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

# Request logs

> Inspect the HTTP requests served for your workspace: status, method, URL, and the full captured request.

## Overview

**System Logs** records the HTTP requests served for your workspace: each call's status, method, URL, who made it, and when. It's where you confirm what an integration actually sent, and where you trace an error back to the request that caused it.

Open it at **Settings → Logs**.

## Reading the log

| Column     | What it is                                               |
| ---------- | -------------------------------------------------------- |
| **Status** | The HTTP status, red for `4xx` / `5xx`, green otherwise. |
| **Method** | `GET`, `POST`, and so on.                                |
| **URL**    | The endpoint that was called.                            |
| **User**   | Who made the request, or **Anonymous**.                  |
| **Time**   | When it was served.                                      |

Search narrows by URL or id. Click a row for the **request detail**: headers, body, and response.

## Tracing an error by request id

Every Custral error surfaces a **request id** (`req_…`) in the error toast. Search that id here to open the exact request that failed and read its response, the fastest way to diagnose an integration problem. See [Errors & request ids](/dev/errors/overview).

## Troubleshooting

| Symptom                    | Likely cause                                      | What to check                                                                      |
| -------------------------- | ------------------------------------------------- | ---------------------------------------------------------------------------------- |
| A request isn't in the log | It never reached the API, or it's on a later page | Confirm the call left your client (base URL / DNS); page back or search the id.    |
| A call shows a `4xx`       | Client error: bad auth, scope, or payload         | Open the request detail for the response body; see [Errors](/dev/errors/overview). |
| A call shows a `5xx`       | Server-side error                                 | Note the `req_…` id and include it in a bug report.                                |

## Related

* [Errors & request ids](/dev/errors/overview)
* [Events](/dev/events)
* [API reference](/dev/api-reference/overview)


## Related topics

- [Events](/dev/events.md)
- [Change Log](/product/updates.md)
- [Requests & responses](/dev/api-reference/requests.md)
- [Workspace Audit](/data/audits/workspace.md)
- [Company Audit](/data/audits/company.md)
