You create an agent with one call, then talk to it with the next. Files, connected accounts, and memory stay on the agent until you delete it.Documentation Index
Fetch the complete documentation index at: https://agent37.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
The Agents API is in a private beta with a small group of design partners. Book a call to see if it’s a fit and we’ll get you set up with access.
Prerequisites
- An API key from the private beta (see above). Send it as a bearer token. Keep it server-side. Never ship it to a browser or end user.
- A funded balance. Your starter credit covers your first agent; once you are onboarded you can top up in the dashboard for more.
Create an agent
POST /v1/instances returns an instance that is ready to take a message the moment its status is running. Every field is optional, so a POST with no body works.Send it a message
Send
input, passing the instance’s id as instance_id. Set stream: true to receive Server-Sent Events as the agent reasons, calls tools, and writes its answer.Next steps
Core concepts
Instances, sessions, responses, and the agent-vs-model distinction.
Send a message
Every field on the core call, plus the response shape.
Streaming events
The full event list and a client parser.
Instances
Size, manage, and delete the agent’s computer.