✨ Asisso is live — Build production voice AI agents with our drag-and-drop workflow builder. Get started → · SDKs →
curl --request POST \
--url https://app.asisso.com/api/v1/user/api-keys \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>"
}
'{
"id": 123,
"name": "<string>",
"key_prefix": "<string>",
"api_key": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}Create a new API key for programmatic access
curl --request POST \
--url https://app.asisso.com/api/v1/user/api-keys \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>"
}
'{
"id": 123,
"name": "<string>",
"key_prefix": "<string>",
"api_key": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}Documentation Index
Fetch the complete documentation index at: https://docs.asisso.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer token in the Authorization header.
Step 1 — Log in to get a session token
curl -X POST https://your-asisso-instance/api/v1/auth/login \
-H "Content-Type: application/json" \
-d '{"email": "you@example.com", "password": "your-password"}'
token field. Use it in the next step.
Step 2 — Create an API key
curl -X POST https://your-asisso-instance/api/v1/user/api-keys \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{"name": "my-api-key"}'
X-API-Key: <key> in place of Authorization: Bearer for all subsequent requests.