Skip to main content
POST
/
api
/
v1
/
agents
/
simple
Create agent (defaults)
curl --request POST \
  --url https://api.kupe.in/api/v1/agents/simple \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "name": "Quickstart Agent",
  "description": "Uses platform defaults"
}
'
{
  "agent": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "is_active": true
  },
  "configurations": {},
  "validation_status": "valid"
}

Documentation Index

Fetch the complete documentation index at: https://kupe.in/docs/llms.txt

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

Authorizations

x-api-key
string
header
default:YOUR_KUPE_API_KEY
required

Kupe dashboard API key for your user.

Body

application/json
name
string
required
description
string

Response

Created — returns CreateAgentResponse (agent.id is agent_id)

Complete agent response (abridged).

agent
object
configurations
object
validation_status
string
Example:

"valid"