[Admin-only] List all available customers
Example curl:
curl --location --request GET 'http://0.0.0.0:4000/customer/list' --header 'Authorization: Bearer sk-1234'
Successful Response
const response = await fetch('/customer/list', { method: 'GET', headers: {}, }); const data = await response.json();
[ { "user_id": "text", "blocked": false, "alias": "text", "spend": 0, "allowed_model_region": "eu", "default_model": "text", "litellm_budget_table": { "soft_budget": 0, "max_budget": 0, "max_parallel_requests": 0, "tpm_limit": 0, "rpm_limit": 0, "budget_duration": "text" } } ]