Skip to main content
GET
/
v1
/
api-keys
List API Keys
curl --request GET \
  --url https://api.example.com/v1/api-keys

Request

cURL
curl https://www.unosend.co/api/v1/api-keys \
  -H "Authorization: Bearer un_xxxxxxxxxx"

Response

200
{
  "data": [
    {
      "id": "key_123",
      "name": "Production Server",
      "created_at": "2024-01-15T10:30:00.000Z"
    },
    {
      "id": "key_124",
      "name": "Development",
      "created_at": "2024-01-16T10:30:00.000Z"
    }
  ]
}
For security, the full API key value is not returned in list responses.