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

Authorizations

Authorization
string
header
required

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

Response

List of user's API keys

id
string
name
string
scopes
string[]
isActive
boolean
expiresAt
string
lastUsedAt
string
createdAt
string