Resources — Documentation/docs/api-reference
[ 01 ]Endpoints
Seven endpoints, one base URL. Every resource follows the same shape — predictable, versioned, boring on purpose.
POST
/v1/agentsCreate a new agentGET
/v1/agents/:idRetrieve agent detailsPOST
/v1/agents/:id/runExecute an agent runGET
/v1/agents/:id/runsList agent execution historyPOST
/v1/networksCreate an agent networkGET
/v1/analytics/costsRetrieve cost attribution dataGET
/v1/analytics/qualityRetrieve quality scores[ 02 ]Quick start
Authenticate with your API key, create an agent, and you are live. The SDKs wrap every endpoint shown here.
[ curl ]POST /v1/agents
$ curl -X POST https://api.myndlabs.tech/v1/agents \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "my-first-agent",
"model": "auto",
"instructions": "You are a helpful assistant."
}'201 created_