Everstack

List Configured Providers returns all providers with their status (configured and unconfigured)

GET/v1/providers/configured
GET/v1/providers/configured

Your instance endpoint, shown on the instance page in the dashboard. Each instance has its own host; there is no shared API host.

Parameters

NameInTypeRequiredDescription
activeOnlyquerybooleanNoFilter to only active providers

Responses

200 List of all providers with their status

PropertyTypeDescription
providersobject[]

default An unexpected error response.

PropertyTypeDescription
codeinteger
messagestring
detailsobject[]

Request

curl -X GET "http://localhost:8089/v1/providers/configured" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"
const response = await fetch("http://localhost:8089/v1/providers/configured", {
  method: "GET",
  headers: {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json",
  },
});
const data = await response.json();
import requests

response = requests.get(
    "http://localhost:8089/v1/providers/configured",
    headers={
        "Authorization": "Bearer YOUR_API_KEY",
        "Content-Type": "application/json",
    },
)
data = response.json()

Response

{
  "providers": [
    {
      "catalog": {
        "name": "string",
        "displayName": "string",
        "baseUrl": "string",
        "apiVersion": "string",
        "modelFamilies": [],
        "models": [],
        "description": "string",
        "providerType": "string",
        "supportsModelDiscovery": true,
        "discoveryApiEndpoint": "string"
      },
      "configuration": {
        "id": "string",
        "providerName": "string",
        "apiKey": "string",
        "enabledModels": [],
        "customBaseUrl": "string",
        "isActive": true,
        "createdAt": "string",
        "updatedAt": "string",
        "syncedToYamlAt": "string",
        "lastUsedAt": "string"
      },
      "isConfigured": true,
      "isActive": true,
      "configuredModelsCount": 0,
      "availableModelsCount": 0,
      "catalogStatus": "string",
      "isFromCatalog": true
    }
  ]
}
{
  "code": 0,
  "message": "string",
  "details": [
    {
      "@type": "string"
    }
  ]
}