Skip to main content
POST
/
api
/
agents
Create agent
curl --request POST \
  --url https://app.vaultgraph.com/api/agents \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "name": "<string>",
  "description": "<string>"
}
'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

x-api-key
string
header
required

Body

application/json

Request payload for creating a new agent.

name
string
required

Human-readable name of the agent.

description
string | null

Optional description of the agent.

Response

Agent created

data
object

Representation of an agent in the VaultGraph portal.