# Info API

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

{% hint style="info" %}
Use the endpoint as a quick test to ensure your call to the API is working.
{% endhint %}

## Get Info

<mark style="color:green;">`GET`</mark> `/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**

{% tabs %}
{% tab title="200" %}

```json
{
    "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"
    }
}
```

{% endtab %}

{% tab title="400" %}

```json
{
  "error": "Invalid request"
}
```

{% endtab %}
{% endtabs %}
