Skip to main content
GET
/
v1
/
registry
/
providers
Python
import requests

url = "https://api.auriko.ai/v1/registry/providers"

response = requests.get(url)

print(response.text)
{
  "providers": [
    {
      "id": "openai",
      "display_name": "OpenAI",
      "description": "GPT models and APIs",
      "icon": "openai",
      "data_policy": "no_training"
    }
  ],
  "count": 10
}
GET /v1/registry/providers returns provider records used in Auriko’s model catalog. Use this endpoint when you need provider IDs, display names, icons, or data policy values for catalog UI. For per-model provider routes and pricing, use the Model directory.
This endpoint is public and does not require authentication.
All parameters, request/response schemas, and examples are auto-generated from the OpenAPI specification.

Response

List of providers

providers
object[]
required
count
integer
required

Total number of providers