Skip to main content
POST
/
v1
/
apikeys
Create API Key.
curl --request POST \
  --url https://api.runloop.ai/v1/apikeys \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>"
}'
{
  "id": "<string>",
  "name": "<string>",
  "key_secret": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string

Response

200 - application/json

OK

id
string
name
string
key_secret
string
I