Skip to main content
GET
/
v0
/
applications
/
{id}
/
api-keys
Get API keys for an application
curl --request GET \
  --url https://api.avidoai.com/v0/applications/{id}/api-keys \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "key": "avido_1234567890abcdef",
      "name": "Production API Key",
      "applicationId": "app-123e4567-e89b-12d3-a456-426614174000",
      "createdAt": "2024-01-05T12:34:56.789Z",
      "updatedAt": "2024-01-05T12:34:56.789Z"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Your unique Avido API key

Path Parameters

id
string<uuid>
required

The unique identifier of the application

Example:

"123e4567-e89b-12d3-a456-426614174000"

Response

Successfully retrieved API keys

Response containing a list of API keys

data
ApiKey · object[]
required

Array of API keys

I