Skip to main content
GET
/
byok
/
configured
curl -X GET https://api.thinnest.ai/byok/configured \
  -H "Authorization: Bearer $THINNESTAI_API_KEY"
{
  "providers": ["openai", "anthropic"],
  "count": 2
}
curl -X GET https://api.thinnest.ai/byok/configured \
  -H "Authorization: Bearer $THINNESTAI_API_KEY"

Get Configured Providers

Returns a list of provider IDs that have BYOK keys configured for the authenticated user. Used by the model dropdown to dynamically show BYOK-unlocked providers.

Request

GET /byok/configured
Authorization: Bearer {token}

Response

{
  "providers": ["openai", "anthropic"],
  "count": 2
}
An empty list means no BYOK keys are configured — only platform and Sarvam models will appear in the dropdown.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successful Response