GET /api/zeq/llm/credentials
List your active credentials. Returns prefix only; full keys are shown ONCE on creation and never again.
Auth
Authorization: Bearer zeq_ak_…. Paid-tier only.
Request
curl https://YOUR-FRAMEWORK/api/zeq/llm/credentials \
-H "Authorization: Bearer zeq_ak_..."
Response · 200 OK
{
"credentials": [
{
"id": "5b7a9c12-...",
"provider": "openai",
"provider_name": "OpenAI",
"label": "prod-key-2026-q2",
"api_key_prefix": "sk-p…AbCd",
"default_model": "gpt-4o",
"base_url": null,
"active": true,
"created_at": "2026-05-10T13:08:32Z"
}
/* … */
],
"count": 3
}
Errors
| Status | Code | Cause |
|---|---|---|
402 | SUBSCRIPTION_REQUIRED | Free-tier caller. |