Everstack

Get Provider returns detailed information about a specific provider

GET/v1/providers/{providerName}
GET/v1/providers/{providerName}

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
providerNamepathstringYes

Responses

200 Provider details with catalog and configuration

PropertyTypeDescription
providerobject

default An unexpected error response.

PropertyTypeDescription
codeinteger
messagestring
detailsobject[]

Request

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

Response

{
  "provider": {
    "catalog": {
      "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"
    },
    "configuration": {
      "id": "string",
      "providerName": "string",
      "apiKey": "string",
      "enabledModels": [
        "string"
      ],
      "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"
    }
  ]
}