← Tools Reference

Linkup

Linkup integration (AI, Data). Imported from open-connector.

API key5 toolshttps://api.linkup.so
GET
linkup_get_credits_balance
Get the current Linkup credits balance for the connected API key.

/v1/credits/balance

POST
linkup_search_results
Search the web with Linkup and return raw grounded search results.

/v1/search

8 parameters
ParamTypeRequiredDescription
qstringrequiredThe natural-language query sent to Linkup.
depthstringrequiredThe Linkup search depth to execute.
maxResultsintegeroptionalThe maximum number of search results to return.
includeImagesbooleanoptionalWhether Linkup should include images in the search results.
includeDomainsarrayoptionalOnly include results from these domains.
excludeDomainsarrayoptionalExclude results from these domains.
fromDatestringoptionalA calendar date in YYYY-MM-DD format.
toDatestringoptionalA calendar date in YYYY-MM-DD format.
POST
linkup_search_answer
Search the web with Linkup and return a sourced natural-language answer.

/v1/search

9 parameters
ParamTypeRequiredDescription
qstringrequiredThe natural-language query sent to Linkup.
depthstringrequiredThe Linkup search depth to execute.
maxResultsintegeroptionalThe maximum number of search results to return.
includeImagesbooleanoptionalWhether Linkup should include images in the search results.
includeDomainsarrayoptionalOnly include results from these domains.
excludeDomainsarrayoptionalExclude results from these domains.
fromDatestringoptionalA calendar date in YYYY-MM-DD format.
toDatestringoptionalA calendar date in YYYY-MM-DD format.
includeInlineCitationsbooleanoptionalWhether Linkup should include inline citations in the answer.
POST
linkup_search_structured_data
Search the web with Linkup and return data normalized to the provided JSON schema.

/v1/search

10 parameters
ParamTypeRequiredDescription
qstringrequiredThe natural-language query sent to Linkup.
depthstringrequiredThe Linkup search depth to execute.
maxResultsintegeroptionalThe maximum number of search results to return.
includeImagesbooleanoptionalWhether Linkup should include images in the search results.
includeDomainsarrayoptionalOnly include results from these domains.
excludeDomainsarrayoptionalExclude results from these domains.
fromDatestringoptionalA calendar date in YYYY-MM-DD format.
toDatestringoptionalA calendar date in YYYY-MM-DD format.
structuredOutputSchemastringrequiredThe JSON schema string that defines the structured response shape.
includeSourcesbooleanoptionalWhether Linkup should include sources alongside the structured data.
POST
linkup_fetch_webpage
Fetch one webpage with Linkup and return markdown plus optional raw HTML and images.

/v1/fetch

4 parameters
ParamTypeRequiredDescription
urlstringrequiredThe webpage URL to fetch.
includeRawHtmlbooleanoptionalWhether Linkup should include the raw HTML in the response.
extractImagesbooleanoptionalWhether Linkup should include extracted images in the response.
renderJsbooleanoptionalWhether Linkup should render the webpage JavaScript before extraction.