Resources — Documentation

Everything you need to integrate with the mynd platform. RESTful endpoints, consistent patterns, and comprehensive examples.

[ 01 ]Endpoints

Seven endpoints, one base URL. Every resource follows the same shape — predictable, versioned, boring on purpose.

POST/v1/agentsCreate a new agent
GET/v1/agents/:idRetrieve agent details
POST/v1/agents/:id/runExecute an agent run
GET/v1/agents/:id/runsList agent execution history
POST/v1/networksCreate an agent network
GET/v1/analytics/costsRetrieve cost attribution data
GET/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_