Skip to main content
GET
/
api-keys
Retrive API keys
curl --request GET \
  --url https://api.poligono.ai/v1/api-keys \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "data": [
    {
      "created_at": 123,
      "created_by": "<string>",
      "key_last_digits": "<string>",
      "name": "<string>",
      "organization_id": "<string>",
      "status": "active",
      "updated_at": 123,
      "id": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Type "Bearer" followed by a space and JWT token.

Query Parameters

page
integer

Page number (default is 1)

limit
integer

Number of items per page (default is 10, max is 100)

Body

application/json

The body is of type object.

Response

OK

data
object[]