UnifyAPI
← Back to catalog

exa.search

mock data$0.012 / call

Semantic Web Search

Neural/semantic web search — finds conceptually related pages, not just keyword matches. Supports category filters (company, research paper, news, people, tweet), domain filtering, date range. Returns relevance scores and highlighted excerpts (Exa)

Web Searchprovider: Exa#exa#search

Input schema

type

Search type: "auto" (balanced), "neural" (semantic similarity), "keyword" (traditional). Default: auto

string
queryrequired

Natural language search query — Exa finds semantically related pages, not just keyword matches

string
category

Category filter for specialized indexes (optional)

string
num_results

Number of results (default 10, max 25)

integer
include_text

Include full extracted page text in results (default false — saves tokens)

boolean
exclude_domains

Exclude results from these domains

array
include_domains

Only include results from these domains (e.g. ["arxiv.org"])

array
end_published_date

Filter: only results published before this date

string
include_highlights

Include key sentence highlights (default true)

boolean
start_published_date

Filter: only results published after this date (ISO format, e.g. "2025-01-01")

string

Call via REST

curl -X POST https://unifyapi.pro/api/call/exa.search \
  -H "Authorization: Bearer uak_live_..." \
  -H "Content-Type: application/json" \
  -d '{"type":"<type>","query":"<query>","category":"<category>","num_results":0,"include_text":"<include_text>","exclude_domains":"<exclude_domains>","include_domains":"<include_domains>","end_published_date":"<end_published_date>","include_highlights":"<include_highlights>","start_published_date":"<start_published_date>"}'

Try it

Paste a UnifyAPI key (create one in the dashboard) and run a real call.