> For the complete documentation index, see [llms.txt](https://docs.monolithforensics.com/monolith/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.monolithforensics.com/monolith/monolith-api-and-webhooks/info-api.md).

# Info API

Verify API access and retrieve basic information about the authenticated Monolith user and tenant.

The **Info API** provides a simple way to verify that your Monolith API endpoint and API key are working correctly.

It returns basic information about the authenticated user and Monolith tenant.

{% hint style="info" %}
Use this endpoint as a quick test when configuring a new API integration.
{% endhint %}

### Get Info

`GET /api/v1/info`

No parameters or request body are required for this endpoint.

Include a valid API key using the `X-API-KEY` request header. See [**Authentication**](/monolith/monolith-api-and-webhooks/api-access/authentication.md) for API authentication guidance.

### Response

{% tabs %}
{% tab title="200" %}
A successful request returns basic information about the authenticated user and Monolith tenant.

```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" %}
An unsuccessful request may return an error response.

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

{% endtab %}
{% endtabs %}

### Using the Info API

A successful response can help confirm that:

* Your Monolith API endpoint is reachable.
* Your API key is being accepted.
* Your request is reaching the expected Monolith tenant.
* The API key is associated with the expected Monolith user.

If this request succeeds but another API request does not, review the endpoint, HTTP method, parameters, and request body for that specific resource.

### Related Documentation

* [**API Access**](/monolith/monolith-api-and-webhooks/api-access.md)
* [**API Endpoints**](/monolith/monolith-api-and-webhooks/api-access/api-endpoints.md)
* [**Authentication**](/monolith/monolith-api-and-webhooks/api-access/authentication.md)
