Skip to content
Last updated

List all AI providers configured for an organization.

GEThttps://api.aitronos.com/v1/organizations/{organization_id}/providers

Path parameters

organization_id string required

Organization ID (org_ prefixed string).

Query parameters

active_only boolean optional

Only return active providers. Default: false.

Returns

Array of Provider objects.

Bash
curl "https://api.aitronos.com/v1/organizations/org_abc123/providers" \
  -H "X-API-Key: $FREDDY_API_KEY"

Response:

[
  {
    "provider_name": "openai",
    "is_active": true,
    "has_credentials": true,
    "provider_org_id": "org-xyz",
    "provider_project_id": "proj-abc",
    "created_at": "2025-01-15T10:30:00Z",
    "updated_at": "2025-12-07T14:20:00Z"
  },
  {
    "provider_name": "anthropic",
    "is_active": true,
    "has_credentials": false,
    "provider_org_id": null,
    "provider_project_id": null,
    "created_at": "2025-01-15T10:30:00Z",
    "updated_at": "2025-12-07T14:20:00Z"
  },
  {
    "provider_name": "google",
    "is_active": false,
    "has_credentials": false,
    "provider_org_id": null,
    "provider_project_id": null,
    "created_at": "2025-01-15T10:30:00Z",
    "updated_at": "2025-12-07T14:20:00Z"
  }
]

Provider object

{
  "provider_name": "openai",
  "is_active": true,
  "has_credentials": true,
  "provider_org_id": "org-xyz",
  "provider_project_id": "proj-abc",
  "created_at": "2025-01-15T10:30:00Z",
  "updated_at": "2025-12-07T14:20:00Z"
}