/enrich

POST

Look up detailed information about a person, company, or entity. Returns structured enrichment data.

/search

POST

Search the web for relevant results on any topic. Returns the most relevant findings.

/scrape

POST

Extract and structure data from a URL or target. Returns content in a clean format.

External Usage

Call these endpoints from any HTTP client. Each request creates a new session and returns the agent's response.

API SecretSet via API_SECRET env var on the agents service
Agent IDSelect an agent aboveAlso visible in Agent Settings (gear icon on chat page)
curl -X POST http://localhost:3000/api/enrich \
  -H 'Authorization: Bearer <your-api-secret>' \
  -H 'Content-Type: application/json' \
  -d '{
    "query": "Anthropic AI",
    "agent_id": "<agent-id>"
  }'