
REST APIInternal
Azure Pool API
Read-only view of the live Azure gpt-5.5 deployment pool on the shared drlambda-openai resource. Consumed by the ChatSlide backend and the local /azure-rotate skill so they pick a live deployment without a redeploy. Refreshed hourly by an internal probe cron. Serves the endpoint and deployment names only — never the API key.
Authentication
Send the service token in the X-API-Key header. The token is provisioned per consumer via the AZURE_POOL_SERVICE_TOKEN environment variable.
GET /api/external/azure-pool
Returns the resource endpoint and the list of live deployment names.
{
"resource": "drlambda-openai",
"endpoint": "https://drlambda-openai.openai.azure.com/",
"live": ["gpt-5.5-1", "gpt-5.5-3", "gpt-5.5-4", "gpt-5.5-5", "gpt-5.5-6"]
}