By using this site, you agree to the Privacy Policy and Terms of Use.
Accept

GadgetBond

  • Latest
  • How-to
  • Tech
    • AI
    • Amazon
    • Apple
    • CES
    • Computing
    • Creators
    • Google
    • Meta
    • Microsoft
    • Mobile
    • Samsung
    • Security
    • Xbox
  • Transportation
    • Audi
    • BMW
    • Cadillac
    • E-Bike
    • Ferrari
    • Ford
    • Honda Prelude
    • Lamborghini
    • McLaren W1
    • Mercedes
    • Porsche
    • Rivian
    • Tesla
  • Culture
    • Apple TV
    • Disney
    • Gaming
    • Hulu
    • Marvel
    • HBO Max
    • Netflix
    • Paramount
    • SHOWTIME
    • Star Wars
    • Streaming
Add GadgetBond as a preferred source to see more of our stories on Google.
Font ResizerAa
GadgetBondGadgetBond
  • Latest
  • Tech
  • AI
  • Deals
  • How-to
  • Apps
  • Mobile
  • Gaming
  • Streaming
  • Transportation
Search
  • Latest
  • Deals
  • How-to
  • Tech
    • Amazon
    • Apple
    • CES
    • Computing
    • Creators
    • Google
    • Meta
    • Microsoft
    • Mobile
    • Samsung
    • Security
    • Xbox
  • AI
    • Anthropic
    • ChatGPT
    • ChatGPT Atlas
    • Gemini AI (formerly Bard)
    • Google DeepMind
    • Grok AI
    • Meta AI
    • Microsoft Copilot
    • OpenAI
    • Perplexity
    • xAI
  • Transportation
    • Audi
    • BMW
    • Cadillac
    • E-Bike
    • Ferrari
    • Ford
    • Honda Prelude
    • Lamborghini
    • McLaren W1
    • Mercedes
    • Porsche
    • Rivian
    • Tesla
  • Culture
    • Apple TV
    • Disney
    • Gaming
    • Hulu
    • Marvel
    • HBO Max
    • Netflix
    • Paramount
    • SHOWTIME
    • Star Wars
    • Streaming
Follow US
AIPerplexityTech

Perplexity rolls out Agent API to orchestrate the full agentic loop

The Agent API treats frontier models as a “processor” that plans, executes tools, and checks results, making agentic workflows feel like a first-class compute model.

By
Shubham Sawarkar
Shubham Sawarkar's avatar
ByShubham Sawarkar
Editor-in-Chief
I’m a tech enthusiast who loves exploring gadgets, trends, and innovations. With certifications in CISCO Routing & Switching and Windows Server Administration, I bring a sharp...
Follow:
- Editor-in-Chief
Mar 12, 2026, 4:05 AM EDT
Share
We may get a commission from retail offers. Learn more
Perplexity Agent API ny2Fq2qcVYuoYeKgmhPl9mrr7AE
Image: Perplexity
SHARE

Perplexity is stepping into full-on “agent stack” territory with the launch of its new Agent API, pitching it as a managed runtime for building serious, production-grade agentic workflows without forcing teams to duct-tape half a dozen infrastructure pieces together. Instead of separately wiring up a model router, a search layer, an embeddings provider, a sandbox for code execution, and a monitoring setup, Perplexity wants you to hit one endpoint, bring your tools, and let its runtime orchestrate the whole loop.

At the heart of this launch is a specific view of what “agentic” actually means in practice. Traditional software runs like a CPU: fetch an instruction, decode, execute, store the result, repeat—no introspection, no decisions. The Agent API flips that model by making a frontier language model the “processor” that receives a high-level objective and decides how to get there—planning, choosing tools, calling them in sequence, looking at results, and iterating until the task is done. Perplexity frames this as an agent loop where the context window behaves like registers and the model’s reasoning and orchestration logic act as the scheduler.

Perplexity’s own example is very B2B: imagine prepping for a sales call. You send one request to the Agent API with three tools wired in—one for your internal CRM, plus web_search and fetch_url. The agent first queries your CRM to pull previous touchpoints, then hits web_search for recent news and competitive intel, and finally uses fetch_url to deeply read only the pages it deems worth a closer look. The idea is that, in a handful of steps, the model assembles internal history, fresh external context, and full-page detail into a single grounded output, without you writing a bespoke orchestration layer around each step.

That’s the big positioning difference versus the usual “we route between models” pitch. Perplexity is explicit that this isn’t just a model router; it’s a managed runtime for the entire agentic loop—retrieval, tool calls, reasoning, and multi-model fallback, plus any custom functions you hand it. Instead of juggling multiple vendors and services, you operate through a single account and API key, and you can still stay multi-provider under the hood. For teams building on top of OpenAI, Anthropic, or other frontier models, the Agent API exposes a model-agnostic interface with support for fallback chains: specify multiple models and the runtime automatically fails over if one is unavailable, aiming for near-100% uptime for production workloads.

Tooling is where the agent story gets practical. Out of the box, the Agent API ships with two core tools—web_search and fetch_url—that mirror what Perplexity uses internally to power its consumer product. web_search isn’t just a generic search call; it supports domain allowlists and denylists (up to 20 domains), recency filters, date ranges, language filters, and configurable content budgets so you can control how much of each page the agent reads. fetch_url, meanwhile, focuses on pulling and extracting full page content from specific URLs chosen by the agent, which is key in multi-step research or compliance-heavy flows where you need the model to actually read a document in depth. Beyond these, developers can register custom tools—functions that talk to internal backends, databases, or external APIs—so the same agent that searches the web can also hit your billing system, analytics warehouse, or CRM with structured calls.

Where Perplexity leans hardest into differentiation is in how it packages its own best practices as “presets.” Building a good agent config from scratch is nontrivial: you have to pick the right model, set reasoning depth, choose tools, and balance token budgets and latency. Perplexity points out that its internal evaluation team already does this tuning at scale for its own products, benchmarking configs against real-world workloads and external benchmarks like Google DeepMind’s DeepSearchQA and its own DRACO benchmark for deep research agents. Presets essentially expose that tuning: each one is a fully transparent, pre-configured setup optimized for a specific use case—fast factual lookups, balanced research, or heavy-duty institutional research.

For developers, the presets are meant to be a sensible starting point rather than a locked box. Each preset publishes its recommended system prompt, tools, step count, and cost profile, and you can override parameters like model choice, max_steps, or tools in a single request. The docs show examples where you keep the “pro-search” preset but swap the underlying model or increase step count for deeper reasoning, or restrict web_search to specific domains when you care about data provenance. Under the hood, some presets lean on Perplexity’s own models and some on third-party providers; for instance, deep-research and advanced-deep-research presets are tuned for complex multi-step analysis with web_search and fetch_url wired in by default.

Deep Research 2.0 is a big part of the story because it powers the advanced-deep-research preset in the Agent API, giving developers access to the same multi-step reasoning engine that fuels Perplexity’s consumer Deep Research feature. Perplexity says this engine can perform dozens of searches per query, read hundreds of source documents, and iteratively refine its answer, which is exactly the kind of pattern that benefits from an agentic runtime rather than simple single-shot calls. On external benchmarks, Perplexity has been loudly claiming state-of-the-art performance: Deep Research reportedly tops Google DeepMind’s DeepSearchQA leaderboard with around 79.5% accuracy, while also running as one of the fastest tools in its class. The company also co-authored DRACO, a cross-domain benchmark that measures deep research systems across 100 tasks spanning domains like law, medicine, finance, academic research, and more, focusing not just on accuracy but on completeness and objectivity.

That benchmarking push isn’t just about bragging rights; it’s part of Perplexity’s pitch that if you trust its agents with high-stakes research—think legal, financial, or medical workflows—you want evidence they can consistently reason over large, messy information spaces. By wiring Deep Research into the Agent API as a preset, Perplexity is effectively turning its consumer-facing superpower into an enterprise building block. Developers can now call the same multi-step engine via API, combine it with their own tools, and let Perplexity’s runtime handle the orchestration and search integration behind the scenes.

Zooming out, the Agent API slots into a broader platform move. Perplexity now surfaces an Agent API for agentic workflows, a Search API for raw, ranked web results with fine-grained filtering, and a Sandbox API for isolated code execution—each addressing a different layer of AI application development. The Agent API sits on top of these primitives and abstracts away complexity into one managed loop: objectives in, tools and models orchestrated automatically, and grounded answers out. Documentation, quickstart snippets, and preset catalogs are already live on docs.perplexity.ai, signaling that Perplexity wants this to be a first-class entry point for teams building agentic products—not just a sidecar to its consumer app.

For developers and companies, the appeal is pretty clear: instead of piecing together a DIY agent stack with separate vendors for search, models, routing, observability, and sandboxed execution, you plug into one multi-provider runtime that already knows how to run the agent loop well and has real-world performance data to back it up. The trade-off, as always, is how much control and custom infrastructure you’re willing to give up in exchange for speed, reliability, and an opinionated “just works” layer on top. But with the Agent API, Perplexity is clearly betting that a lot of teams would rather ship agentic workflows quickly on a managed foundation than reinvent the orchestration wheel themselves.


Discover more from GadgetBond

Subscribe to get the latest posts sent to your email.

Leave a Comment

Leave a ReplyCancel reply

Most Popular

What is ChatGPT? The AI chatbot that changed everything

Anthropic launches The Anthropic Institute for frontier AI oversight

Samsung’s Galaxy Book6, Pro and Ultra land in the US today

Alexa+ adds new response styles so your smart speaker feels more personal

Apple’s biggest product launch of 2026 is here — buy everything today

Also Read
Anthropic Claude head illustration

Claude Opus 4.6 and Sonnet 4.6 now support 1M tokens at standard pricing

A SpaceX Falcon 9 rocket lifts off from Space Launch Complex 4 East at Vandenberg Space Force Base in California, surrounded by billowing white smoke and bright engine flames, with a clear blue sky and the Pacific Ocean visible in the background.

SpaceX launches 25 Starlink v2 Mini satellites on Falcon 9

Tesla Powerwall 3 WPfRR4Lt

Tesla Powerwall 3 is officially headed to Japan

A screenshot of a Perplexity-branded document titled "Ways to Reclaim Focus," showing the Final Pass document markup feature in action — a yellow tooltip popup highlights a spelling/grammar suggestion labeled "low" severity, pointing out that "less tabs" should be corrected to "fewer tabs," with the suggested fix reading "your research happens in fewer tabs," demonstrating how Final Pass flags actionable edits inline within the document.

Perplexity Computer can now mark up any document with Final Pass

A dark-themed screenshot of the Perplexity Computer interface on a Mac desktop with a floral wallpaper. The left sidebar shows navigation options including Computer, New Task, Tasks, Files, Connectors, Skills, and Gallery. The main panel displays a task titled "Syncing Google Docs and Notion Editor" in progress. Visible steps include building the updated app, running a terminal command (cd unified-editor && npm run build), restarting the production server with NODE_ENV=production node dist/index.js, and a final deployment step labeled "Deploying with new document open by default." At the bottom, a completion message reads "Done — the app now opens straight into the new document editor with the title field and block editor ready to go," accompanied by a preview thumbnail of the generated app called "Perplexity Docs." Two additional browser tabs labeled "Google Docs" and "Media | Articles | Notion" are open at the top of the window.

Perplexity Computer adds embedded connector support for web app builders

Screenshot of the Perplexity Pro interface showing the model selection dropdown menu with "Nemotron 3 Super" selected, labeled as "New," alongside other available models including Best, Sonar, GPT-5.4, Gemini 3.1 Pro, Claude Sonnet 4.6, and Claude Opus 4.6 (Max, locked). The "Computer" mode button and "Thinking" toggle are also visible in the dark-themed UI.

NVIDIA Nemotron 3 Super lands on Perplexity, Agent API, and Computer

A screenshot of a Perplexity AI-generated Tokyo 3-Day Itinerary displayed on an iPhone, showing a "Quick Practical Notes" section with bullet points covering cash recommendations (¥20,000–30,000), a no-tipping reminder, cherry blossom timing (first bloom forecast March 19), plum blossom viewing at Yushima Tenjin, and weather details (12–14°C highs, 5–7°C lows). Below the notes, a card preview shows a generated app with a dark map pinpointing Tokyo locations, labeled "Tokyo 3-Day Itinerary — Generated app," with an "Add details or clarifications..." input field at the bottom.

Perplexity Computer is now on iPhone — Android is next

humanoid head and futuristic background, artificial intelligence concept

We’re all thinking the same — and AI might be why

Company Info
  • Homepage
  • Support my work
  • Latest stories
  • Company updates
  • GDB Recommends
  • Daily newsletters
  • About us
  • Contact us
  • Write for us
  • Editorial guidelines
Legal
  • Privacy Policy
  • Cookies Policy
  • Terms & Conditions
  • DMCA
  • Disclaimer
  • Accessibility Policy
  • Security Policy
  • Do Not Sell or Share My Personal Information
Socials
Follow US

Disclosure: We love the products we feature and hope you’ll love them too. If you purchase through a link on our site, we may receive compensation at no additional cost to you. Read our ethics statement. Please note that pricing and availability are subject to change.

Copyright © 2026 GadgetBond. All Rights Reserved. Use of this site constitutes acceptance of our Terms of Use and Privacy Policy | Do Not Sell/Share My Personal Information.