linkup-search

Guides query construction, depth selection, and fetch usage for Linkup web search API calls.

2|1|Updated Jun 9, 2026
One-click install
npx skills add https://github.com/zester4/zilmate --skill linkup-search-zester4
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: linkup-search
Source: https://github.com/zester4/zilmate/tree/main/.agents/skills/linkup-search
Command: npx skills add https://github.com/zester4/zilmate --skill linkup-search-zester4

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Agents often misuse web search APIs by writing vague queries, picking the wrong search depth, or scraping pages inefficiently, which wastes credits and returns poor results. This Skill teaches the agent how to reason about Linkup search and fetch calls before making them. ## Core Features & Use Cases - Query Construction Framework: A three-step reasoning process (inputs, data location, sequential chaining) that determines the right query style and depth before any call. - Depth and Output Selection: Clear rules for choosing between fast, standard, and deep depths, and between searchResults, sourcedAnswer, and structured output types, with cost guidance per tier. - Fetch Endpoint and Advanced Techniques: Instructions for using /fetch on known URLs with renderJs, LinkedIn extraction patterns, date and domain filtering, and multi-query coverage strategies. - Use Case: An agent asked to research a company's pricing uses the Skill to decide on a deep search, writes an instruction-style query to find and scrape the pricing page, and extracts plan names, prices, and features. ## Quick Start Use the linkup-search skill to find Datadog's current pricing page, scrape it, and extract plan names, prices, and included features.

Frequently Asked Questions about linkup-search

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I choose between fast, standard, and deep search depth in Linkup?

Choose depth based on where the data lives and whether steps must chain. Use fast for one focused fact, standard for snippet-level answers or scraping one known URL, and deep when you need to scrape multiple URLs or chain search into scraping. When uncertain, default to deep.

How to write effective Linkup search queries for company research?

Write instruction-style queries that state what to find, where to look, and what to extract, such as asking for the pricing page and specific plan fields. Add context like dates, locations, and domains, and use keyword-style queries only for simple single-fact lookups.

When should I use the Linkup fetch endpoint instead of search?

Use /fetch when you already know the exact URL and want its content as markdown, such as scraping a known pricing page or article. Use /search when you do not know which URL holds the answer or need agentic retrieval across multiple pages.

Does Linkup support scraping JavaScript-rendered pages?

Yes, the /fetch endpoint supports a renderJs option that executes JavaScript before extraction. The Skill recommends defaulting renderJs to true because many sites load content via JavaScript, and the latency tradeoff is worth the reliability gain.

What are the cost differences between Linkup search depths?

Fast and standard calls cost €0.005 each, while deep calls cost €0.05. For broad research, running 3-5 parallel standard calls with focused sub-queries is often faster and cheaper than a single deep call.

Can Linkup extract LinkedIn profile and post data?

Yes, with a known LinkedIn URL you can extract profile details, recent posts, or comments using a standard-depth call. If you need to discover LinkedIn URLs first and then scrape them, use deep depth with explicit sequential instructions.