Perplexity Advanced Deep Research API

Institutional-grade research powered by Claude Opus 4.6 reasoning, with maximum depth, enhanced tool access, and extensive source coverage.

PerplexityResearch & SearchProprietary Endpoint

About Perplexity Advanced Deep Research

Institutional-grade research powered by Claude Opus 4.6 reasoning, with maximum depth, enhanced tool access, and extensive source coverage.

web searchreasoningdeep research

Perplexity Advanced Deep Research specs

Model ID
perplexity-advanced-deep-research
Provider
Perplexity
Category
Research & Search
Input
text, image, document
Output
text
Endpoints
POST /v1/chat/completions
POST /v1/responses
POST /v1/messages
POST /v1/search

Perplexity Advanced Deep Research API pricing

Live pay-as-you-go rates from the EmpirioLabs catalog. You are billed only for what you use, with no monthly minimum.

Type
Spec
Rate
Input
per 1M prompt tokens
$12.00
Output
per 1M generated tokens
$60.00
Web Search Call
per call
$0.012
URL Fetch Call
per call
$0.0012
Compare on the full pricing page

How to call the Perplexity Advanced Deep Research API

Perplexity Advanced Deep Research serves the OpenAI-compatible Chat Completions API. Point any OpenAI SDK at https://api.empiriolabs.ai/v1 with your EmpirioLabs API key and use the model id perplexity-advanced-deep-research. Get an API key from the EmpirioLabs dashboard.

cURL
curl https://api.empiriolabs.ai/v1/chat/completions \
  -H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "perplexity-advanced-deep-research",
    "messages": [
      {"role": "user", "content": "Write a haiku about the ocean."}
    ]
  }'
Python (OpenAI SDK)
from openai import OpenAI

client = OpenAI(
    base_url="https://api.empiriolabs.ai/v1",
    api_key="YOUR_EMPIRIOLABS_API_KEY",
)

response = client.chat.completions.create(
    model="perplexity-advanced-deep-research",
    messages=[{"role": "user", "content": "Write a haiku about the ocean."}],
)
print(response.choices[0].message.content)
Full Perplexity Advanced Deep Research API reference

Perplexity Advanced Deep Research API parameters

Request parameters supported by the Perplexity Advanced Deep Research API on EmpirioLabs. Defaults apply when a field is omitted.

ParameterTypeDefaultRange / valuesDescription
reasoning_effortenumhighlow, medium, highLevel of reasoning depth. Higher effort = more thorough analysis.
max_output_tokensnumber1000010000 to 16000Maximum tokens in the final answer (does not count research steps). Range 10000-16000.
max_tokens_per_pagenumber40964096 to 16384Max tokens extracted per search result page. Higher = more content per source but slower. Default is 4096.
search_domain_filterstring--Comma-separated domains. Prefix with '-' to exclude. Max 20.
search_language_filterstring--Comma-separated ISO 639-1 codes (2 letters). Max 10.
search_recency_filterenumnonenone, day, week, month, yearRelative time filter. Cannot be combined with specific dates.
search_after_datestring--Only include sources published after this date. Use YYYY-MM-DD or natural language.
search_before_datestring--Only include sources published before this date. Use YYYY-MM-DD or natural language.
countrystring--Two-letter ISO 3166-1 code (e.g. US, GB) for biasing results to a country.
regionstring--State or province name for location bias.
citystring--City name for location bias.
latitudenumber--Latitude for location bias, in decimal degrees.
longitudenumber--Longitude for location bias, in decimal degrees.
disable_formattingbooleanfalse-Skip the EmpirioLabs Markdown formatting (citation hyperlinks + References block + reasoning_content render). The plain answer text and the structured...

Perplexity Advanced Deep Research API: common questions

How much does the Perplexity Advanced Deep Research API cost?

On EmpirioLabs, Perplexity Advanced Deep Research is billed pay as you go: Input $12.00 per 1M prompt tokens; Output $60.00 per 1M generated tokens; Web Search Call $0.012 per call. The live rate card on this page always matches what the API charges.

Is the Perplexity Advanced Deep Research API OpenAI-compatible?

Yes. Perplexity Advanced Deep Research serves the OpenAI-compatible Chat Completions API, so existing OpenAI SDKs work by pointing base_url at https://api.empiriolabs.ai/v1 and setting the model id to perplexity-advanced-deep-research.

Can I try Perplexity Advanced Deep Research in the browser before integrating?

Yes. The EmpirioLabs playground runs Perplexity Advanced Deep Research in the browser with the same parameters the API exposes, so you can test prompts before writing code.

How do I get a Perplexity Advanced Deep Research API key?

Create an EmpirioLabs account, then generate a key under API Keys in the dashboard. Billing is pay-as-you-go credits, so you only pay for the requests you make.

Ready to use better endpoints?

Explore our models, or contact us about business inquiries, custom deployments, or anything else.