V1 API (deprecated)
The Tengr.ai V1 API has been retired. Every request to a /v1/* route now
returns 410 Gone:
{
"statusCode": 410,
"message": "The v1 API has been deprecated. Use the v2 API.",
"docs": "https://docs.tengr.ai/v2/"
}
What changed
V1 used a Supabase session token for auth and a small set of generation routes. Everything it offered is available on V2 with a cleaner surface, API key auth, and many more models.
Move to V2
Head to the V2 API reference to get started. In short:
- Authenticate with an API key (
Authorization: Bearer sk_...) instead of a Supabase session token. - Call the
/v2/...paths. The request and response shapes are documented per endpoint in the V2 reference. - Provide a
webhookURL to receive the finished artwork, or poll the artwork by id.
If you were on V1 and need help mapping an old call to its V2 equivalent, the V2 reference lists every generation family and utility endpoint.