# Responses

URL: https://www.agencytitan.com/docs/tag/responses

Every response is JSON wrapped in a `data` envelope. Single-item endpoints return the object directly under `data`. List endpoints return an array under `data` alongside a `pagination` object (see Pagination). The examples show each shape.

**Single item**

```json
{
  "data": {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "name": "Acme Co"
  }
}
```

**List**

```json
{
  "data": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "name": "Acme Co"
    }
  ],
  "pagination": {
    "total": 120,
    "limit": 50,
    "offset": 0
  }
}
```

Successful reads and writes return `200`. Failures use conventional HTTP status codes and a consistent error body (see Errors).

## Operations

_This tag has no REST operations (guide / concept page)._

## Useful links

- Interactive page: https://www.agencytitan.com/docs/tag/responses
- API reference home: https://www.agencytitan.com/docs/
- This page as Markdown: https://www.agencytitan.com/docs/tag/responses.md
- Full API Markdown: https://api.agencytitan.com/v1/llms.txt
