For the complete documentation index, see llms.txt. This page is also available as Markdown.

Info API

This endpoint retrieves basic details about your Monolith tenant and the API key currently being used.

Use the endpoint as a quick test to ensure your call to the API is working.

Get Info

GET /api/v1/info

This endpoint retrieves basic details about your Monolith tenant and the API key currently being used.

No parameters are required for this API.

Response

{
    "message": "Monolith API is running",
    "success": true,
    "user": {
        "name": "John McClain",
        "email": "jmcclain@diehard.com",
        "title": "Detective",
        "user_id": 1,
        "last_name": "McClain",
        "first_name": "John",
        "monolith_tenant": "tenant_123abc345"
    }
}

Last updated

Was this helpful?