Skip to main content
GET
/
api
/
api-keys
List API Keys
curl --request GET \
  --url https://app.replyify.ai/api/api-keys \
  --header 'Authorization: Bearer <token>'
Returns all API keys for the current workspace. Key values are masked after creation for security — only the prefix is shown.
curl -X GET "https://app.replyify.ai/api/api-keys" \
  -H "Authorization: Bearer YOUR_API_KEY"

Example Response

{
  "keys": [
    {
      "id": "uuid",
      "name": "Production Key",
      "key_prefix": "rfy_***abc12345",
      "is_active": true,
      "last_used_at": "2025-01-27T12:00:00Z",
      "expires_at": null,
      "created_at": "2025-01-15T10:00:00Z"
    }
  ]
}