Define a prompt, pick your columns, choose your AI model — get a public REST API endpoint your website can use as a smart search engine. No backend coding required.
Choose an AI provider (Gemini, Groq, OpenAI, Perplexity), paste your API key, write a system prompt, and define the output columns you want.
We instantly generate a unique public REST API endpoint for your agent. Test it live directly from your dashboard.
Call your endpoint from any website with a simple POST request. Get back structured JSON results matching your defined columns.
A startup directory website creates a search agent with Gemini and these columns: Company, Stage, Amount, Investor, Country. Their users search and get live AI-powered results instantly.
# Call your generated endpoint
POST https://your-app.vercel.app/api/search/funding-india-a1b2c3
{ "query": "AI startups raised Series A in 2024" }
# Response
{ "results": [{ "Company": "...", "Stage": "Series A", ... }] }