Integrate the real world into your application or agent with the Outgoing API.
The Outgoing API provides a seamless REST interface to access our curated catalog of local experiences, personalized activity recommendations, and booking/reservation integrations.
Our comprehensive API reference, including schemas, endpoints, and interactive examples, is available in our developer portal.
Building an agent? Point it at the machine-readable spec rather than this page, which follows the llms.txt convention:
All API calls require authentication credentials. There are three kinds:
Authorization: Bearer YOUR_API_KEY header.X-External-User-Id to say which of your users the call is for, and you provision each user once via POST /partner/v1/users. Contact us to set one up at [email protected].The simplest call needs only your bearer key and a prompt:
curl -sS -G "https://api.outgoing.world/partner/v1/search" \
--data-urlencode "prompt=fun things to do this weekend in Birmingham" \
-H "Authorization: Bearer og_api_<your-key>"Search runs a live agentic crawl, so by default the response is streamed (stream=true): the server holds the connection open with whitespace keep-alives while the search runs, then sends the complete result as the final bytes. This prevents proxy and load-balancer idle timeouts from aborting a slow search.
Sign in with your Outgoing account to create an API key for your personal account with trial quota that you can start using with OpenClaw, Hermes, and other agents, or contact us for a platform integration.