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

# API Response

All API responses from the Reporta platform follow a standardized format to ensure consistency and ease of integration. Below is the general structure of the response:

```json theme={null}
{
  "success": true,
  "message": "<string>",
  "data": {}
}
```

The API returns responses for paginated data in the following format:

```json theme={null}
{
  "success": true,
  "message": "<string>",
  "data": {
    "items": [],
    "meta": {
        "total": "<number>",
        "page": "<number>",
        "limit": "<number>"
    }
  }
}
```
