> ## Documentation Index
> Fetch the complete documentation index at: https://adcp-docs-ja.pier1.co.jp/llms.txt
> Use this file to discover all available pages before exploring further.

# list_content_standards

> list_content_standards は AdCP でオプションのフィルタリングとページネーションを使って利用可能なコンテンツセーフティ設定を返します。

# list\_content\_standards

利用可能なコンテンツスタンダード設定を列挙します。

**Response time**: \< 500ms

## Request

**Schema**: [list-content-standards-request.json](https://adcontextprotocol.org/schemas/v3/content-standards/list-content-standards-request.json)

| Parameter    | Type   | Required | Description                                                              |
| ------------ | ------ | -------- | ------------------------------------------------------------------------ |
| `countries`  | array  | No       | Filter by ISO 3166-1 alpha-2 country codes (case-insensitive)            |
| `channels`   | array  | No       | Filter by channels                                                       |
| `languages`  | array  | No       | Filter by ISO 639-1 or BCP 47 language tags (case-insensitive)           |
| `pagination` | object | No       | ページネーション: `max_results`（1〜100、デフォルト 50）と `cursor`（前のレスポンスから返された不透明なカーソル） |

## Response

**Schema**: [list-content-standards-response.json](https://adcontextprotocol.org/schemas/v3/content-standards/list-content-standards-response.json)

スタンダード設定の概要リストを返します。ポリシー本文やキャリブレーションデータを含む詳細は [get\_content\_standards](./get_content_standards) を呼び出してください。

### Success Response

```json theme={null}
{
  "$schema": "/schemas/content-standards/list-content-standards-response.json",
  "standards": [
    {
      "standards_id": "emea_digital_safety",
      "name": "EMEA - all digital channels",
      "countries_all": ["GB", "DE", "FR"],
      "channels_any": ["display", "olv", "ctv"],
      "languages_any": ["en", "de", "fr"]
    },
    {
      "standards_id": "us_display_only",
      "name": "US - display only",
      "countries_all": ["US"],
      "channels_any": ["display"],
      "languages_any": ["en"]
    }
  ]
}
```

### Error Response

```json theme={null}
{
  "errors": [
    {
      "code": "UNAUTHORIZED",
      "message": "Invalid or expired token"
    }
  ]
}
```

## Related Tasks

* [get\_content\_standards](./get_content_standards) - 特定のスタンダード設定を取得
* [create\_content\_standards](./create_content_standards) - 新規設定を作成
