Indexがプライバシーサンドボックストピックを入札リクエストで送信する方法

DSP
Last Updated: 4月 23, 2026

Google's Topics API provides the functionality to include interest-based user information in bid requests using something called topics without the use of cookies in Chrome when Media Owners are integrated with Index using Prebid.js version 8.9.0 or later. トピックは、IAB Audience Taxonomyに基づいて、広告タクソノミーから選択されたトピックです。提供された場合、IndexはDSPに送信する入札リクエストのuser.data.extuser.data[].segmentオブジェクトに以下のトピック情報を送信します。

Note: Index will start sending these fields in December 2023.

フィールドタイプ詳細
user.data.name文字列:必須トピックIDを確認したデータプロバイダーのエクスチェンジ特定の名称。IndexがトピックIDを確認した場合は、nameが常にtopics.indexexchange.comになります。
user.data.ext.segclass文字列:必須

segtaxフィールドで指定されたタクソノミーのバージョン。例:example "taxonomy_v2

Taxonomy V1: https://github.com/patcg-individual-drafts/topics/blob/main/taxonomy_v1.md

Taxonomy V2: https://github.com/patcg-individual-drafts/topics/blob/main/taxonomy_v2.md

user.data.ext.segtax

整数:必須

Enumeration of TaxonomiesのIABテックラボで指定されたタクソノミーに関連するID。プライバシーサンドボックスのTopics APIでは、当社は以下のタクソノミーに対応しています:

user.data.segment.id

文字列:必須

IDフィールドで指定されたバージョンにマッピングされたトピックID。segclass

トピックデータは、入札リクエストで以下のように表示されます。

                    {
    ...
    "user": {
        "data": [{
        "name": "topics.indexexchange.com", // Exchange-specific name for the data provider that observed the topic ID
                "ext": {
                    "segtax": 600, // Taxonomy Mapping to V1
                    "segclass": "1" // Model Mapping
                },
                "segment": [{
                    "id": "10"// Topic ID
                }]
            },
            {
                "name": "topics.indexexchange.com", // Exchange-specific name for the data provider that observed the topic ID 
                "ext": {
                    "segtax": 601, // Taxonomy Mapping to V2
                    "segclass": "2" // Model Mapping
                },
                "segment": [{
                    "id": "12" // Topic ID
                }]
            }
        ]
    }
}

                

For more information, refer to the Topics Integration Guide for SSPs.