Skip to main content
GET
/
admin
/
api-keys
List admin API keys
curl --request GET \
  --url https://api.fluxer.app/v1/admin/api-keys \
  --header 'Authorization: <api-key>'
[
  {
    "key_id": "<string>",
    "name": "<string>",
    "created_at": "<string>",
    "last_used_at": "<string>",
    "expires_at": "<string>",
    "created_by_user_id": "<string>",
    "acls": [
      "<string>"
    ]
  }
]

Authorizations

Authorization
string
header
required

Admin API key: Authorization: Admin <token>. Only valid for /admin/* endpoints.

Response

Success

key_id
string
required

Unique identifier for the API key

name
string
required

Display name for the API key

created_at
string
required

ISO 8601 timestamp when the key was created

last_used_at
string | null
required

ISO 8601 timestamp when the key was last used, or null if never used

expires_at
string | null
required

ISO 8601 timestamp when the key expires, or null if no expiration

created_by_user_id
string
required

User ID of the admin who created this key

acls
string[]
required

List of access control permissions for the key

Maximum array length: 100