Deployment list
View deployment IDs, model IDs, and creation time.
You can check status in one place.
Includes refresh and detail pages.
Main features in the app.
View deployment IDs, model IDs, and creation time.
You can check status in one place.
Includes refresh and detail pages.
Update display name and sign out from the profile page.
Account details stay current.
Use `/v1/responses` with account API keys.
Integrations are straightforward.
Request body includes model and input.
Public users can send messages from the contact page.
Questions can be submitted without login.
Rate limiting is enabled per IP.
How the app is structured.
Public pages
Home, features, pricing, and contact are public.
Authenticated app
`/app` routes require sign-in.
API backend
Public contact endpoint plus protected app endpoints.
Typical uses.
Call model endpoints from internal systems.
Add model calls to customer-facing features.
Use one endpoint pattern across projects.
Request examples.
POST /deployments
Authorization: Bearer <id-token>
{ "modelId": "team-agent-v2" }POST /proxy/v1/responses
Authorization: Bearer <account-api-key>
{ "model": "team-agent-v2", "input": "Summarize build logs" }