Skip to main content
POST
Search the Web
Search API vs. Sonar. These are different APIs with different response shapes.
  • Search API — Returns structured JSON results[] with title, url, snippet, date, and last_updated. Call https://api.perplexity.ai/search directly — no router required.
  • Sonar — Chat completions with built-in web search. Returns a prose answer with citations, not a results array.
Both are first-party Perplexity APIs. Neither routes through OpenRouter.

Response Shape

The Search API returns a ranked results[] array. Each result includes title, url, snippet, and optional date and last_updated fields:

Direct Call

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
query
required

Search query (required)

country
string

ISO 3166-1 alpha-2 country code

Required string length: 2
max_results
integer
default:10

Maximum number of results to return

Required range: 1 <= x <= 20
search_context_size
string

Controls how much content is extracted from result pages.

  • low — short passages most relevant to the query.
  • medium — a balanced amount of content per document.
  • high (default) — detailed content relevant to the query.

Omit when using max_tokens or max_tokens_per_page.

max_tokens
integer

Maximum total webpage content tokens to return across all search results

Required range: 1 <= x <= 1000000
max_tokens_per_page
integer

Maximum webpage content tokens to extract from each result page

Required range: 1 <= x <= 1000000
search_language_filter
string[]

ISO 639-1 language codes (2-character max)

Maximum array length: 20
Required string length: 2
search_domain_filter
string[]

Limit search results to specific domains (max 20)

Maximum array length: 20
Maximum string length: 253
last_updated_after_filter
string

Return results updated after this date (MM/DD/YYYY)

last_updated_before_filter
string

Return results updated before this date (MM/DD/YYYY)

search_after_date_filter
string

Return results published after this date (MM/DD/YYYY)

search_before_date_filter
string

Return results published before this date (MM/DD/YYYY)

search_recency_filter
enum<string>

Filter by publication recency (hour/day/week/month/year)

Available options:
hour,
day,
week,
month,
year

Response

Successful Response

results
ApiSearchPage · object[]
required
id
string
required
server_time
string | null