Sonar Pro Search

Perplexity chatvisionreasoningtool_use Long

API ID: perplexity/sonar-pro-search

Input Price
$3.00
/1M tokens
Output Price
$15.00
/1M tokens

About Sonar Pro Search

Sonar Pro is Perplexity's flagship search-augmented model, combining powerful language capability with real-time web search for accurate, cited responses. Unlike traditional language models that rely solely on training data, Sonar Pro actively searches the internet to provide current, factual information with source citations. The model excels at research queries, fact-checking, current events, and any task requiring up-to-date information. Sonar Pro features sophisticated query understanding that determines when and how to search, synthesizing multiple sources into coherent responses. It demonstrates strong performance on accuracy benchmarks, particularly for questions requiring recent information. The model is ideal for research assistants, fact-checking tools, and applications where accuracy and currency matter more than creative generation. For developers building AI systems that must provide reliable, cited information, Sonar Pro offers unique capability that pure language models can't match. It's particularly valuable for professional research, journalism support, and educational applications.

๐Ÿ’ฐ
Price Ranking
#921 lowest price among 950 Chat models

Model Specifications

Context Length
200k
Max Output
8k
Release Date
2025-10-30
Capabilities
chat vision reasoning tool_use
Input Modalities
textimage
Output Modalities
text

Best For

  • Complex reasoning, math problems, multi-step logic
  • Image analysis, document understanding, visual Q&A
  • Conversations, content writing, general assistance

Consider Alternatives For

  • Simple Q&A (cheaper models available)

๐Ÿ’ฐ Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$5.85
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$180.00
/month
1000 tickets/day, ~800 tokens each
Data Analysis Pipeline
$247.50
/month
500 analyses/day, ~2k tokens each

Perplexity Model Lineup

Compare all models from Perplexity to find the best fit

Model Input Output Context Capabilities
Sonar Pro Search Current Free Free 200k chat vision reasoning tool_use
Llama3 Sonar 70B Online Free Free 28k chat
Llama3 Sonar 70B Online Free Free 28k chat
Llama3 Sonar 8B Online Free Free 28k chat
Llama3 Sonar 8B Online Free Free 28k chat
Llama3 Sonar 8B Free Free 33k chat

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

xAI Grok 3
xAI
Input: $3.00
Output: $15.00
Context: 131k
xAI Grok 3 Beta
xAI
Input: $3.00
Output: $15.00
Context: 131k
Anthropic Claude Sonnet 4.5
Input: $3.00
Output: $15.00
Context: 1.0M
xAI Grok 4
xAI
Input: $3.00
Output: $15.00
Context: 256k

๐Ÿš€ Quick Start

Get started with Sonar Pro Search API

OpenAI-compatible SDK
from openai import OpenAI

client = OpenAI(
    base_url="https://api.provider.com/v1",
    api_key="YOUR_API_KEY"
)

response = client.chat.completions.create(
    model="perplexity/sonar-pro-search",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)