Skip to main content

Documentation Index

Fetch the complete documentation index at: https://asisso-cd509912.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Base URL

All API requests are made to:
https://your-asisso-instance/api/v1
If you are using the hosted version, the base URL is https://app.asisso.com/api/v1.

Versioning

The current API version is v1. The version is included in the URL path.

Request format

All request bodies must be sent as JSON with the Content-Type: application/json header.
curl -X POST https://your-asisso-instance/api/v1/workflow/create/definition \
  -H "Content-Type: application/json" \
  -H "X-API-Key: dg_your_api_key" \
  -d '{"name": "My Agent", "workflow_definition": {}}'

Response format

All responses are JSON. Successful responses return the relevant resource object. Error responses follow a consistent shape:
{
  "detail": "Error message describing what went wrong"
}
For validation errors (422), the detail may be a list:
{
  "detail": [
    {
      "loc": ["body", "name"],
      "msg": "field required",
      "type": "value_error.missing"
    }
  ]
}

Health check

Verify the API is reachable.
curl https://app.asisso.com/api/v1/health
{
  "status": "ok",
  "version": "1.0.0"
}