Python
import requests
url = "https://api.auriko.ai/v1/registry/providers"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.auriko.ai/v1/registry/providers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl https://api.auriko.ai/v1/registry/providers
{
"providers": [
{
"id": "openai",
"display_name": "OpenAI",
"description": "GPT models and APIs",
"icon": "openai",
"data_policy": "no_training"
}
],
"count": 10
}Model Catalog
Provider catalog
Lists providers that appear in Auriko model catalog entries.
GET
/
v1
/
registry
/
providers
Python
import requests
url = "https://api.auriko.ai/v1/registry/providers"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.auriko.ai/v1/registry/providers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl https://api.auriko.ai/v1/registry/providers
{
"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.