POST
/
desearch
/
ai
/
search
/
links
/
web
curl --request POST \
  --url https://apis.datura.ai/desearch/ai/search/links/web \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "prompt": "What are the recent sport events?",
  "tools": [
    "Web Search",
    "Hacker News Search",
    "Reddit Search",
    "Wikipedia Search",
    "Youtube Search",
    "Twitter Search",
    "ArXiv Search"
  ],
  "model": "NOVA"
}'
{
  "youtube_search_results": [
    {
      "title": "Did The FED Do The Impossible? [Huge Implications For Bitcoin]",
      "link": "https://www.youtube.com/watch?v=Ycq1u2zWfr8",
      "snippet": "Did we avoid a recession and is there still more upside for Bitcoin? GET MY FREE NEWSLETTER ...",
      "summary_description": "Did The FED Do The Impossible? [Huge Implications For Bitcoin]"
    }
  ],
  "hacker_news_search_results": {
    "organic_results": [
      {
        "position": 1,
        "title": "latest",
        "link": "https://news.ycombinator.com/latest?id=42816511",
        "redirect_link": "https://www.google.com/url?sa=t&source=web&rct=j&opi=89978449&url=https://news.ycombinator.com/latest%3Fid%3D42816511&ved=2ahUKEwiVgOLj45qLAxVJkIkEHQHrOzwQFnoECAgQAQ",
        "displayed_link": "https://news.ycombinator.com › latest",
        "favicon": "https://serpapi.com/searches/679a0a9dc12f1fe12103d57c/images/6e61b1f70b2f0d460b331310ebc59ded6780dc83d9e6763c5e07eea31b8c9155.png",
        "date": "17 hours ago",
        "snippet": "The streaming app for the Paris Olympics was a revolution from which I can never go back to OTA coverage. I watched so many more competitions ...",
        "snippet_highlighted_words": [
          "competitions"
        ],
        "source": "Hacker News"
      }
    ]
  },
  "reddit_search_results": {
    "organic_results": [
      {
        "position": 2,
        "title": "6 New Sports at Los Angeles 2028 Olympics",
        "link": "https://www.reddit.com/r/olympics/comments/1ert9av/6_new_sports_at_los_angeles_2028_olympics/",
        "redirect_link": "https://www.google.com/url?sa=t&source=web&rct=j&opi=89978449&url=https://www.reddit.com/r/olympics/comments/1ert9av/6_new_sports_at_los_angeles_2028_olympics/&ved=2ahUKEwiFyNfj45qLAxUBLFkFHd0hOr0QFnoECCIQAQ",
        "displayed_link": "2.7K+ comments · 5 months ago",
        "favicon": "https://serpapi.com/searches/679a0a9da515cccc50df9203/images/a48c8b9ec22ae0600eaafcee75444cac0b05a09b6c4f36ae69a23b1ec299d102.png",
        "snippet": "Baseball and softball are not new olympic sports, but returning. Up to Tokyo, baseball was at every olympics since 1984 except London and Rio.",
        "snippet_highlighted_words": [
          "sports"
        ],
        "source": "Reddit · r/olympics"
      }
    ]
  },
  "arxiv_search_results": [
    {
      "title": "[2304.02655] Deciphering the Blockchain: A Comprehensive Analysis of Bitcoin's Evolution, Adoption, and Future Implications",
      "link": "https://arxiv.org/abs/2304.02655",
      "snippet": "Abstract page for arXiv paper 2304.02655: Deciphering the Blockchain: A Comprehensive Analysis of Bitcoin's Evolution, Adoption, and Future Implications",
      "with_metadata": true,
      "summary_description": "[2304.02655] Deciphering the Blockchain: A Comprehensive Analysis of Bitcoin's Evolution, Adoption, and Future Implications"
    }
  ],
  "wikipedia_search_results": [
    {
      "title": "List of bitcoin companies - Wikipedia",
      "link": "https://en.wikipedia.org/wiki/List_of_Bitcoin_companies",
      "snippet": "",
      "with_metadata": true,
      "summary_description": "List of bitcoin companies - Wikipedia"
    }
  ],
  "search_results": {
    "organic_results": [
      {
        "position": 1,
        "title": "Latest sports news, videos, interviews and comment",
        "link": "https://www.cnn.com/sport",
        "redirect_link": "https://www.google.com/url?sa=t&source=web&rct=j&opi=89978449&url=https://www.cnn.com/sport&ved=2ahUKEwj5yNTj45qLAxWqHNAFHXpCGUoQFnoECBgQAQ",
        "displayed_link": "https://www.cnn.com › sport",
        "favicon": "https://serpapi.com/searches/679a0a9dca85264e50d1e39f/images/e52955875acc356934b40dfd33c4b0e8191710f0c1b820d80a006163f68f2197.png",
        "snippet": "Latest sports news from around the world with in-depth analysis, features, photos and videos covering football, tennis, motorsport, golf, rugby, sailing, ...",
        "snippet_highlighted_words": [
          "Latest sports"
        ],
        "sitelinks": {
          "inline": [
            {
              "title": "Football",
              "link": "https://www.cnn.com/sport/football"
            },
            {
              "title": "Tennis",
              "link": "https://www.cnn.com/sport/tennis"
            },
            {
              "title": "Golf",
              "link": "https://www.cnn.com/sport/golf"
            },
            {
              "title": "US Sports",
              "link": "https://www.cnn.com/sport/us-sports"
            }
          ]
        },
        "source": "CNN"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Body

application/json
prompt
string
required

Search query prompt

Example:

"What are the recent sport events?"

tools
enum<string>[]
required

List of tools to search with

An enumeration.

Available options:
Web Search,
Hacker News Search,
Reddit Search,
Wikipedia Search,
Youtube Search,
Twitter Search,
ArXiv Search
Example:
[
  "Web Search",
  "Hacker News Search",
  "Reddit Search",
  "Wikipedia Search",
  "Youtube Search",
  "Twitter Search",
  "ArXiv Search"
]
model
enum<string>
default:NOVA

Model to use for scraping. Options: NOVA, ORBIT, HORIZON

Available options:
NOVA,
ORBIT,
HORIZON
Example:

"NOVA"

Response

200
application/json
A JSON object mapping tool names to their search results.
youtube_search_results

Youtube search results

hacker_news_search_results

Hacker News search results

reddit_search_results

Reddit search results

arxiv_search_results

Arxiv search results

wikipedia_search_results

Wikipedia search results

search_results

Search results