Web Search API
for AI Agents
Prismfy is a synchronous web search API for AI agents and automated workflows. Give AI agents live public-web search with one POST /v1/search call and get structured JSON back immediately.
Try Prismfy API
Start free. Run your first live search in minutes.
Synchronous for agent loops
Return live public-web results inside a running agent workflow without building your own search stack.
Structured JSON for tool calling
Get title, URL, snippet, engine, and metadata in a format that fits prompts, tools, and downstream automation.
One endpoint, multiple engines
Call POST /v1/search and query the public web through one consistent interface.
Use Prismfy with MCP and Coding Agents
Keep the homepage focused on the workflows where live public-web search is the clearest fit.
Tool calling for AI agents
Expose Prismfy to OpenAI, Claude, or Gemini agents when they need fresh public-web search results during a running task.
MCP for coding agents
Use Prismfy as a search tool for coding and research workflows that need live docs, release notes, and current web context.
Docs verification with web fallback
Route version-sensitive or uncertain questions to live search before your agent answers with stale or guessed information.
Your API Control Panel
Inspect usage, keys, and recent searches after your first successful integration.
Queries Remaining
2,153
/ 3,500 this period
Pro tier
Recent Searches
"claude 4 release notes"
Structured JSON returned
"langgraph tool calling docs"
Structured JSON returned
"openai responses api web search"
Structured JSON returned
Pricing for agent workloads
Start free, then move to a monthly plan as your agent usage grows. Extra requests are available on Pro and Data Digger when you need overflow.
Data Digger
- ✓10,000 requests / month
- ✓120 RPM
- ✓All engines incl. Google
- ✓Priority support
Enterprise
- ✓Custom quotas
- ✓300 RPM
- ✓30 sec result cache
- ✓IP allowlist
- ✓Webhook delivery
How the Web Search API Works for AI Agents
Call POST /v1/search from your agent loop and get fresh public-web results back synchronously as structured JSON.
Request
curl -X POST https://api.prismfy.io/v1/search \
-H "Authorization: Bearer ss_live_xxxx" \
-H "Content-Type: application/json" \
-d '{
"query": "claude 4 release notes",
"engines": ["brave", "bing"],
"timeRange": "month",
"page": 1
}'Response
{
"results": [
{
"title": "Claude 4 - Anthropic",
"url": "https://www.anthropic.com/news/claude-4",
"content": "Anthropic released Claude 4 with updated model capabilities and developer tooling.",
"engine": "brave"
}
],
"cached": false,
"query": "claude 4 release notes",
"meta": {
"taskId": "550e8400-e29b-41d4-a716-446655440000",
"durationMs": 1243,
"provider": "prismfy",
"engines": ["brave", "bing"],
"page": 1,
"language": "en",
"timeRange": "month",
"domain": null
}
}Built for agent loops, docs verification, and live external fact retrieval.
Add live web search to your agent workflow.
Start with docs if you want proof first, or get an API key and use 1,000 free requests to run your first searches.