Skip to main content
GET
/
api
/
admin
/
api-keys
List API Keys
curl --request GET \
  --url https://api.ai2fin.com/api/admin/api-keys \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "scopes": "<array>",
      "expiresAt": "<string>",
      "createdAt": "<string>",
      "lastUsedAt": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT token obtained from /api/auth/login endpoint. Use for standard API access and OAuth-based integrations.

Response

200 - application/json

List of API keys

success
boolean
data
object[]