Agents Management

Create Agent

Create a new agent

POST/agents

Authorizations

AuthorizationstringheaderREQUIRED

Bearer token from your account

Body

application/json
namestringREQUIRED

Name

configobject

Configuration

descriptionstring

Description

Request samples

curl --request POST \
  --url https://api.example.com/v1/agents \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "example_name",
  "config": {},
  "description": "example_description"
}'

Response samples

{
  "status": 200,
  "metadata": {
    "description": "Get things done with the help of AI agents",
    "favicon": "https://example.com/favicon/favicon-32x32.png",
    "language": "en",
    "next-head-count": "20",
    "og:description": "Get things done with the help of AI agents",
    "og:image": "https://example.com/og-image.jpg",
    "og:title": "Example Site | Professional Platform",
    "og:type": "website",
    "og:url": "https://example.com",
    "ogDescription": "Get things done with the help of AI agents",
    "ogImage": "https://example.com/og-image.jpg",
    "ogTitle": "Example Site | Professional Platform",
    "ogUrl": "https://example.com",
    "screenshotId": "b189d32c-bf14-4be6-b7e7-883c8d609d6a"
  }
}