> ## Documentation Index
> Fetch the complete documentation index at: https://nuntly.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# API observability

> Monitor your API request volume, response times, and a live log of every call made to Nuntly.

The **API** tab of the [observability dashboard](/docs/guides/observability) gives you visibility into how your integration is using the Nuntly API.

## Request volume

A time-series chart showing the number of API requests over the selected period, broken down by response status (success, client error, server error).

Use this chart to spot unexpected spikes in traffic or increases in error rates.

## Response times

A chart showing API response latency over time, with percentile breakdowns (p50, p95, p99).

Use this chart to identify slow requests and track whether latency degrades over time.

## Request logs

A table of recent API calls with the following columns:

| Column    | Description                                    |
| --------- | ---------------------------------------------- |
| Method    | HTTP method (`GET`, `POST`, `PATCH`, `DELETE`) |
| Endpoint  | The API path that was called                   |
| Status    | HTTP response status code                      |
| Duration  | Response time in milliseconds                  |
| Timestamp | When the request was made                      |

Click any row to expand the full request and response details.

Use this table to debug integration issues or audit API usage.

## Learn more

<CardGroup cols={2}>
  <Card title="Observability overview" icon="chart-mixed" href="/docs/guides/observability">
    All observability views at a glance
  </Card>

  <Card title="API authentication" icon="key" href="/docs/api-reference/authentication">
    How to authenticate your API requests
  </Card>
</CardGroup>
