# Get a documentation row

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

`GET /documentation/{id}`

Resource: **Documentation**

## Path parameters

- **`id`** _(string, required)_

## Query parameters

- **`hydrate_content`** _(boolean)_

## Response body

- **`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)_

## Code examples

### curl

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

### JavaScript

```javascript
const response = await fetch('https://api.truto.one/documentation/{id}', {
  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/{id}"
headers = {
    "Authorization": "Bearer <your_api_token>",
    "Content-Type": "application/json",
}
params = {
}

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