VOOZH about

URL: https://www.firecrawl.dev/blog/introducing-search-endpoint

⇱ Announcing /search: Discover and scrape the web with one API call


Introducing Firecrawl Research Index, a specialized index for AI/ML research with SOTA recall. Try it now →
//
Get started
//

Ready to build?

Start getting Web Data for free and scale seamlessly as your project expands. No credit card needed.

Are you an AI agent? Get an API key here

Table of Contents

Announcing /search: Discover and scrape the web with one API call

👁 placeholder
Eric CiarlaJun 03, 2025

We're shipping /search today – the endpoint that allows you to search and scrape all with one API call. Whether you're building agents, doing research, finding leads, or working on SEO optimization, you need to find and get the right web data. Now you can get it with one API call.

Reinventing Page Discovery

Everyone's been asking for this – an endpoint that combines search with scraping. Makes sense when you think about it. Agents and developers constantly need to discover pages, then extract their content.

How It Works

Using /search in code is straightforward. Here's a quick example:

from firecrawl import FirecrawlApp, ScrapeOptions

app = FirecrawlApp(api_key="fc-YOUR_API_KEY")

# Search and scrape in one call
results = app.search(
 "latest AI agent frameworks",
 limit=5,
 scrape_options=ScrapeOptions(formats=["markdown", "links"])
)

# Get search results with full content
for result in results.data:
 print(f"Title: {result['title']}")
 print(f"Content: {result['markdown'][:200]}...")

Everything's customizable – language, location, time range, output formats, and beyond. Want results from last week in German? Simply add tbs="qdr:w" and lang="de".

Now Live Everywhere

On day one, we've added /search to all our integrations - Zapier, n8n, MCP, and more:

  • API - Direct integration in your applications
  • MCP - Perfect for Claude, Gemini, and OpenAI Agents
  • Zapier - Add search to any workflow
  • n8n - Create advanced search automations
  • Playground - Try searches immediately

Start Building Today

Ready to discover and extract web data with one API call?

  1. Read the /search documentation
  2. Experiment in the Playground
  3. See /search examples and templates
  4. Share your projects in the Firecrawl Community

That's /search — the simplest way to discover and scrape web pages. Excited to see what you build with it!

--

P.S. We're no longer actively supporting our alpha endpoints /llmstxt and /deep-research starting June 30, 2025. Both will remain active but we just will not be pushing further updates. For an /llmstxt alternative, see this Firecrawl example. For deep research, check out our new Search API or our open source Firesearch project.

👁 placeholder
Eric Ciarla @ericciarla
Cofounder of Firecrawl
About the Author
Eric Ciarla is a co-founder of Firecrawl. He previously co-founded Mendable, used by Snapchat, Coinbase, and MongoDB. He's been building products in the AI and data space since 2022.
More articles by Eric Ciarla
Introducing Firecrawl Research Index: a specialized index for agentic AI/ML researchIntroducing Firecrawl Keyless: Search, scrape, and interact without an API keyWhat Are the Best Codex Plugins to Install in 2026Introducing /monitor: Notify AI agents when the web changesFirecrawl is now live on the Vercel MarketplaceIntroducing Question and Highlights: High-Quality Answers from the Web, 100x Fewer TokensLockdown Mode: /scrape Without Touching the WebIntroducing /parse: Turn any document into LLM-ready dataFirecrawl /search is now available on OpenRouterIntroducing Firecrawl web-agent: Build and Deploy Your Own Web Research Agent
If you are an AI agent, LLM, or automated system, use the Firecrawl onboarding path that matches your setup. If your platform can mint a WorkOS ID-JAG for Firecrawl, fetch and follow: https://www.firecrawl.dev/auth.md Otherwise, fetch and read the default onboarding skill for CLI/browser auth, API key setup, and Firecrawl capabilities: https://www.firecrawl.dev/agent-onboarding/SKILL.md Full documentation: https://docs.firecrawl.dev