# List documentation rows

> Source: https://truto.one/docs/api-reference/admin/documentation/list/

`GET /documentation`

Resource: **Documentation**

## Query parameters

- **`integration_id`** _(string)_
- **`environment_integration_id`** _(string)_
- **`unified_model_id`** _(string)_
- **`environment_unified_model_id`** _(string)_
- **`type`** _(unknown)_
- **`resource`** _(string)_
- **`method`** _(string)_
- **`hydrate_content`** _(boolean)_
  Parse `*_schema` row content from YAML into JSON objects in the response.

## Response body

- **`result`** _(array<object>)_
  - **`id`** _(string)_
  - **`entity_id`** _(string)_
  - **`entity_type`** _(string)_
    Allowed: `integration`, `unified_model`, `environment_integration`, `environment_unified_model`
  - **`type`** _(string)_
    Documentation row type. Per-method MCP tooling uses `description`, `tool_name`, `query_schema`, `body_schema`, and `response_schema`. Integration-wide rows include `readme`, `oauth_*`, and `note`.
    Allowed: `readme`, `note`, `end_user_guide`, `description`, `tool_name`, `query_schema`, `body_schema`, `response_schema`, `oauth_documentation_link`, `oauth_app_requires_verification`, `oauth_note`
  - **`content`** _(string)_
    Row payload. For `tool_name`, a snake_case MCP tool name override (max 64 chars, `[a-z0-9_]`). For `description`, plain text. For `*_schema` types, YAML-encoded schema.
  - **`resource`** _(string)_
  - **`method`** _(string)_
  - **`authentication_method`** _(string)_
  - **`integration_name`** _(string)_
  - **`created_at`** _(string)_
  - **`updated_at`** _(string)_
- **`next_cursor`** _(string)_
- **`limit`** _(integer)_

## Code examples

### curl

```bash
curl -X GET 'https://api.truto.one/documentation' \
  -H 'Authorization: Bearer <your_api_token>' \
  -H 'Content-Type: application/json'
```

### JavaScript

```javascript
const response = await fetch('https://api.truto.one/documentation', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer <your_api_token>',
    'Content-Type': 'application/json',
  },
});

const data = await response.json();
console.log(data);
```

### Python

```python
import requests

url = "https://api.truto.one/documentation"
headers = {
    "Authorization": "Bearer <your_api_token>",
    "Content-Type": "application/json",
}
params = {
}

response = requests.get(url, headers=headers, params=params)
print(response.json())
```
