How to enable
To include images in your search results, setincludeImages to true in your API request.
Example Request
curl
json
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Linkup Research is live — ranked #1 on the SealQA-0 benchmark. Try it →
Released: January 07, 2025
includeImages to true in your API request.
Example Request
curl --request POST \
--url https://api.linkup.so/v1/search \
--header 'Authorization: Bearer {{LINKUP_API_KEY}}' \
--header 'Content-Type: application/json' \
--data '{
"q": "Who is Barack Obama?",
"depth": "standard",
"outputType": "searchResults",
"includeImages": "true"
}'
{
"results": [
{
"type": "image",
"name": "Barack Obama | Biography, Presidency, & Facts | Britannica.com",
"url": "https://cdn.britannica.com/43/172743-138-545C299D/overview-Barack-Obama.jpg"
},
{
"type": "text",
"name": "Barack Obama Biography",
"url": "https://www.biography.com/political-figures/barack-obama",
"content": "Barack Obama was the 44th president of the United States and the first Black commander-in-chief. He served two terms, from 2009 until 2017."
}
]
}