List API keys
Retrieve all API keys for the current tenant with metadata but not the key values for security.
AuthorizationBearer <token>
In: header
Query Parameters
search?string
Search API keys by name or description
role?string
Filter by API key role
Value in
"admin" | "account_manager" | "viewer"
status?string
Filter by API key status
Value in
"active" | "inactive"
Response Body
fetch("https://app.orbiqhq.com/api/v1/integrations/api-keys?search=string&role=admin&status=active")
{
"api_keys": [
{
"id": "key-123",
"title": "Production Integration",
"token": "tc_a1b2c3d4...",
"created_at": "2025-01-01T10:00:00Z",
"last_access": "2025-01-15T10:00:00Z",
"status": "Active",
"role": "Account Manager"
}
],
"api_docs_url": "https://docs.orbiqhq.com/docs/api/v1"
}
Empty
Empty
How is this guide?