Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.linkup.so/llms.txt

Use this file to discover all available pages before exploring further.

We’re excited to introduce "fast", a new depth value for the Linkup Search endpoint. "fast" is our sub-second search mode, optimized to provide accurate results and snippets in the lowest possible time. "fast" works best with focused queries, where you’re looking for one specific piece of information.

What’s new

"fast" uses a simpler, more direct search pipeline than "standard" or "deep". The key difference is scope:
  • "fast": one piece of information, one direct answer. Best for short, focused prompts. Only search results and relevant content snippets are returned.
  • "standard": best to handle several topics, data sources (general web search, financial data, LinkedIn public data), or retrieve fully scraped content of a URL provided in the query.
This makes "fast" ideal for conversational use cases, real-time lookups, and high-volume pipelines where latency is critical.
The "fast" depth is currently in beta. We welcome any feedback. Reach out on Discord or at support@linkup.so.

How to use

A simple rule of thumb: if your prompt is short and you’re looking for one specific thing, use "fast". If your prompt is longer or spans multiple topics, use "standard".
Use "fast"Use "standard"
”Who is the CEO of OpenAI?""Find the pricing, features, and customer reviews for Notion"
"Current EUR/USD exchange rate""Current EUR/USD exchange rate and analysts analysis"
"What is Linkup’s website?""What is Linkup’s website and LinkedIn URL”
Set depth to "fast" in your API request:
curl --request POST \
  --url https://api.linkup.so/v1/search \
  --header 'Authorization: Bearer {{LINKUP_API_KEY}}' \
  --header 'Content-Type: application/json' \
  --data '{
  "q": "weather in Paris today",
  "depth": "fast",
  "outputType": "sourcedAnswer"
}'

When to use each depth

DepthBest for
"fast" (beta)Simple, focused queries: one piece of information, low latency
"standard"General queries, multiple topics or sources
"deep"Sequential queries: search for info, then scrape or search again based on results

Pricing

"fast" depth costs $0.005 per call (with outputType: "searchResults"), the same as "standard". For more details, see Concepts.