Skip to main content
POST
/
v1
/
api-keys
Create API key
curl --request POST \
  --url https://api.agentmark.co/v1/api-keys \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-Agentmark-App-Id: <api-key>' \
  --data '
{
  "name": "<string>",
  "app_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "permissions": []
}
'
{
  "data": {
    "app_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "created_at": "2023-11-07T05:31:56Z",
    "id": "<string>",
    "name": "<string>",
    "permissions": [
      "<string>"
    ],
    "plaintext_key": "<string>",
    "expires_at": "2023-11-07T05:31:56Z",
    "key_prefix": "<string>",
    "last_used_at": "2023-11-07T05:31:56Z",
    "revoked_at": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.agentmark.co/llms.txt

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

Authorizations

X-Agentmark-App-Id
string
header
required

Application ID for tenant scoping

Authorization
string
header
required

API key (sk_agentmark_*)

Body

application/json
name
string
required
Required string length: 1 - 255
app_id
string<uuid> | null
permissions
string[]

Response

API key created.

data
object
required