開発者ガイドの概要

Amazon Ads APIの概要

ストアスポットライト

ストアスポットライトは、ストアにトラフィックを誘導するのに役立ちます。この広告フォーマットには、ブランドロゴ、カスタム見出し、少なくとも3つのサブページがあるAmazon内のストアを掲載できます。Amazonの買い物客が広告タイルをクリックすると、ストア内の指定したサブページに誘導されます。ブランドロゴや見出しをクリックすると、買い物客はストアのメインページに誘導されます。ストアについての詳細はこちら。

詳細については、APIリファレンスを参照してください。

始める前に

ストアスポットライト広告を作成する前に、次のものが必要です。

サンプルリクエスト

landPage.urlには、ストアのホームページURLを必ず含めてください。各サブページについて、asinキーに指定したASINが、urlキーに指定したサブページに存在することを確認します。

curl --location 'https://advertising-api.amazon.com/sb/v4/ads/storeSpotlight' \
--header 'Amazon-Advertising-API-ClientId: amzn1.application-oa2-client.xxxxxx' \
--header 'Authorization: Bearer xxxxxx' \
--header 'Amazon-Advertising-API-Scope: xxxxxx' \
--header 'Accept: application/vnd.sbadresource.v4+json' \
--header 'Content-Type: application/json' \
--data '{
"ads": [{
    "landingPage": {
        "url": "https://www.amazon.com/stores/page/xxxxxx"
    },
    "name": "ストアスポットライト広告名",
    "state": "ENABLED",
    "adGroupId": "{{adGroupId}}",
    "creative": {
        "brandName": "ブランド名",
        "subpages": [{
                "pageTitle": "Savannah",
                "asin": "B020000000",
                "url": "https://www.amazon.com/stores/page/xxxxxx"
            },
            {
                "pageTitle": "マイアミ",
                "asin": "B001000000",
                "url": "https://www.amazon.com/stores/page/xxxxxxx"
            },
            {
                "pageTitle": "San Fran",
                "asin": "B000000000",
                "url": "https://www.amazon.com/stores/page/xxxxxx"
            }
        ],
        "brandLogoAssetID": "amzn1.assetlibrary.asset1.xxxxxx",
        "headline": "広告の商品の見出しのテキスト"
    }
}]
}
'