Digital Platform API - Ad Server サービス

この読み取り専用サービスを使用すると、サード パーティのクリエイティブを配信できる広告サーバー、または Xandr でホストされているクリエイティブまたはサード パーティのクリエイティブの配信中にデータ収集のために呼び出すことができる広告サーバーに関する情報を表示できます。

REST API

HTTP メソッド エンドポイント 説明
GET https://api.appnexus.com/adserver すべての広告サーバーを表示する
GET https://api.appnexus.com/adserver?id=ADSERVER_ID 特定の広告サーバーに関する情報を表示する

JSON フィールド

フィールド 種類 説明
declare_to_adx ブール値 true の場合、広告サーバーは Google アド マネージャーの広告枠に入札するときに識別されます。 Google アド マネージャーのクリエイティブ ポリシーに完全に準拠している必要があります。
description string 広告サーバーの説明。
hostnames オブジェクトの配列 広告サーバーに関連付けることができるホスト名の一覧。 このフィールドは、管理者のみが編集できます。
id int 広告サーバーに関連付けられている内部 ID。
last_modified timestamp 広告サーバーの構成がシステムで最後に更新された日時 (YYYY-MM-DD HH:MM:SS の形式)。
name string 広告サーバーの名前。

すべての広告サーバーを表示する (出力が切り捨てられます)

curl -b cookies -c cookies 'https://api.appnexus.com/adserver'
{
    "response": {
        "status": "OK",
        "adservers": [
            {
                "id": 0,
                "name": "Other/Unlisted",
                "description": null,
                "type": "adserver",
                "is_appnexus_approved": false,
                "declare_to_adx": false,
                "last_modified": "2011-07-14 13:54:01",
                "is_hidden": false,
                "hostnames": null
            },
            {
                "id": 1,
                "name": "24/7 Real Media",
                "description": null,
                "type": "adserver",
                "is_appnexus_approved": false,
                "declare_to_adx": false,
                "last_modified": "2010-04-15 21:43:30",
                "is_hidden": false,
                "hostnames": null
            },
            {
                "id": 2,
                "name": "Ad Manager",
                "description": null,
                "type": "adserver",
                "is_appnexus_approved": false,
                "declare_to_adx": false,
                "last_modified": "2010-04-01 19:56:43",
                "is_hidden": false,
                "hostnames": null
            },
            {
                "id": 3,
                "name": "AdCentric",
                "description": null,
                "type": "adserver",
                "is_appnexus_approved": false,
                "declare_to_adx": false,
                "last_modified": "2010-05-20 18:33:47",
                "is_hidden": false,
                "hostnames": null
            },
            {
                "id": 4,
                "name": "Adconian",
                "description": null,
                "type": "adserver",
                "is_appnexus_approved": false,
                "declare_to_adx": false,
                "last_modified": "2010-04-01 19:56:43",
                "is_hidden": false,
                "hostnames": null
            },
            {
                "id": 5,
                "name": "AdDynamix",
                "description": null,
                "type": "adserver",
                "is_appnexus_approved": false,
                "declare_to_adx": false,
                "last_modified": "2010-04-01 19:56:43",
                "is_hidden": false,
                "hostnames": null
            },
            {
                "id": 6,
                "name": "AdECN",
                "description": null,
                "type": "adserver",
                "is_appnexus_approved": false,
                "declare_to_adx": false,
                "last_modified": "2010-04-01 19:56:43",
                "is_hidden": false,
                "hostnames": "hostname1.com","hostname2.net"
            },
            ...
        ],
        "count": 202,
        "start_element": null,
        "num_elements": null,
        "dbg_info": {
            ...
        }
    }
}

広告サーバーに関する情報を表示する 5

curl -b cookies -c cookies 'https://api.appnexus.com/adserver?id=5'
{
    "response": {
        "status": "OK",
        "adserver": {
            "id": 5,
            "name": "AdDynamix",
            "description": null,
            "type": "adserver",
            "is_appnexus_approved": false,
            "declare_to_adx": false,
            "last_modified": "2010-04-01 19:56:43",
            "is_hidden": false,
            "hostnames": null
        },
        "count": 1,
        "start_element": null,
        "num_elements": null,
        "dbg_info": {
            ...
        }
    }
}