Everstack

List Provider Catalog returns all available providers from the catalog (defaults)

GET/v1/providers/catalog
GET/v1/providers/catalog

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

Responses

200 List of all available providers from catalog

PropertyTypeDescription
providersobject[]

default An unexpected error response.

PropertyTypeDescription
codeinteger
messagestring
detailsobject[]

Request

curl -X GET "http://localhost:8089/v1/providers/catalog" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"
const response = await fetch("http://localhost:8089/v1/providers/catalog", {
  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/catalog",
    headers={
        "Authorization": "Bearer YOUR_API_KEY",
        "Content-Type": "application/json",
    },
)
data = response.json()

Response

{
  "providers": [
    {
      "name": "string",
      "displayName": "string",
      "baseUrl": "string",
      "apiVersion": "string",
      "capabilities": {
        "chat": true,
        "completions": true,
        "embeddings": true,
        "functionCalling": true,
        "vision": true,
        "streaming": true,
        "fineTuning": true,
        "assistants": true
      },
      "modelFamilies": [],
      "models": [],
      "rateLimits": {
        "requestsPerMinute": 0,
        "tokensPerMinute": 0,
        "concurrentRequests": 0
      },
      "description": "string",
      "providerType": "string",
      "supportsModelDiscovery": true,
      "discoveryApiEndpoint": "string"
    }
  ]
}
{
  "code": 0,
  "message": "string",
  "details": [
    {
      "@type": "string"
    }
  ]
}