Skip to main content
GET
/
v1
/
byok
/
providers
/
{provider}
/
tiers
List provider account tiers
import requests

url = "https://api.auriko.ai/v1/byok/providers/{provider}/tiers"

response = requests.get(url)

print(response.text)
{
  "object": "list",
  "provider": "<string>",
  "data": [
    {
      "tier": "<string>",
      "display_name": "<string>",
      "qualification": "<string>"
    }
  ],
  "count": 123
}
Returns each tier’s display name and data policy. Public endpoint — no authentication required. Naturally idempotent.
Account tier helps Auriko track provider rate limits, choose safer routing, and enforce your data-policy constraints. Auriko uses the tier you set rather than assuming a higher provider policy.
Auriko derives the key’s data policy from provider + tier. You don’t submit a data policy directly. All parameters, request/response schemas, and examples are auto-generated from the OpenAPI specification.

Path Parameters

provider
string
required

Provider identifier (for example openai)

Response

Tier options for the provider

object
enum<string>
required
Available options:
list
provider
string
required
data
object[]
required
count
integer
required