Get Infrastructure
const url = 'https://example.com/api/admin/infrastructure/';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/admin/infrastructure/ \ --header 'Authorization: Bearer <token>'Return infrastructure configuration, live health status, and OIDC provider connectivity.
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Successful Response
object
Snapshot of active infrastructure configuration.
object
Active storage backend (‘local’ or ‘s3’).
Active cache backend (‘memory’ or ‘redis’).
Database flavor (e.g. ‘postgres’, ‘managed-postgres’).
Active connection pooler mode (‘sqlalchemy’ or ‘external’).
Tile caching backend in use.
Tile cache TTL in seconds.
Whether a CDN base URL is configured for tile delivery.
Health probe results keyed by provider name (db, storage, cache, llm, embedding).
Health probe results for configured OAuth/OIDC providers, keyed by slug.
Example
{ "oidc_providers": {}}Bad request — invalid query parameters or payload
object
Example
{ "type": "about:blank"}Unauthorized — missing or invalid credentials
object
Example
{ "type": "about:blank"}Forbidden — caller lacks access to this resource
object
Example
{ "type": "about:blank"}Not found
object
Example
{ "type": "about:blank"}Validation error
object
Example
{ "type": "about:blank"}Internal server error
object
Example
{ "type": "about:blank"}