Skip to main content
GET
/
api-keys
List API Keys
curl --request GET \
  --url https://api.unosend.co/api-keys \
  --header 'Authorization: Bearer <token>'

Documentation Index

Fetch the complete documentation index at: https://docs.unosend.co/llms.txt

Use this file to discover all available pages before exploring further.

Request

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

Response

200
{
  "success": true,
  "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.