GET
/
project
/
{id}
/
key
curl --request GET \
  --url http://localhost:3003/project/{id}/key \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "label": "<string>",
      "roles": "<string>",
      "is_private": true,
      "created_at": "2023-11-07T05:31:56Z",
      "last_used": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT Authorization Token header using the Bearer scheme

Path Parameters

id
string
required

Unique identifier of the project

Response

200
application/json

API keys retrieved successfully

data
object[]