Skip to main content
POST
/
apps
/
{app_id}
/
keys
Create App Key
curl --request POST \
  --url https://api.ara.so/apps/{app_id}/keys \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "requests_per_minute": 30
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}
Runtime keys are used for /v1/apps/{app_id}/run, not control-plane routes.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

app_id
string
required

Body

application/json
name
string | null
requests_per_minute
integer
default:30
Required range: 1 <= x <= 2000

Response

Successful Response