The Add site links feature in Ads Manager is an Advantage+ Creative optimization that showcases additional URLs below your static or dynamic single media (only on Facebook feed) when it's likely to improve performance. This guide covers using the Add site links feature using the Marketing API.
To be eligible to use this feature, your ad campaign must have:
Set up your ad campaigns using the following instructions:
curl -X POST \
-F 'name=Creative With Site Links' \
-F 'object_story_spec={
"link_data": {
"link": "<URL>",
},
"page_id": "<PAGE_ID>",
"instagram_actor_id": "<INSTAGRAM_ACTOR_ID>",
}' \
-F 'access_token=<ACCESS_TOKEN>' \
https://graph.facebook.com/v25.0/act_<AD_ACCOUNT_ID>/adcreatives
New fields are highlighted in bold.
curl -X POST \
-F 'name=Creative With Site Links' \
-F 'object_story_spec={
"link_data": {
"link": "<URL>",
},
"page_id": "<PAGE_ID>",
"instagram_actor_id": "<INSTAGRAM_ACTOR_ID>",
}' \
-F 'creative_sourcing_spec={
"site_links_spec": [{
"site_link_title": "<SITE_LINK_TITLE>",
"site_link_url" : "<SITE_LINK_URL>",
},
{
"site_link_title": "<SITE_LINK_TITLE>",
"site_link_url" : "<SITE_LINK_URL>",
},
{
"site_link_title": "<SITE_LINK_TITLE>",
"site_link_url" : "<SITE_LINK_URL>",
},
{
"site_link_title": "<SITE_LINK_TITLE>",
"site_link_url" : "<SITE_LINK_URL>",
}],
}' \
-F 'degrees_of_freedom_spec={
"creative_features_spec": {
"site_extensions": {
"enroll_status": "OPT_IN",
},
},
}' \
-F 'access_token=<ACCESS_TOKEN>' \
https://graph.facebook.com/v25.0/act_<AD_ACCOUNT_ID>/adcreatives
-F 'creative={
"object_story_spec": {
"page_id": "<PAGE_ID>",
"link_data": {
"link": "<WEBSITE_URL>",
}
},
}' \
-F "adset_id=<ADSET_ID>" \
-F "name=New Ad" \
-F "status=PAUSED" \
-F "access_token=<ACCESS_TOKEN>" \
https://graph.facebook.com/v25.0/act_<AD_ACCOUNT_ID>/ads
New fields are highlighted in bold.
curl -X POST \
-F 'creative={
"object_story_spec": {
"page_id": "<PAGE_ID>",
"link_data": {
"link": "<WEBSITE_URL>",
}
},
"creative_sourcing_spec": {
"site_links_spec": [{
"site_link_title": "<SITE_LINK_TITLE>",
"site_link_url" : "<SITE_LINK_URL>",
},
{
"site_link_title": "<SITE_LINK_TITLE>",
"site_link_url" : "<SITE_LINK_URL>",
},
{
"site_link_title": "<SITE_LINK_TITLE>",
"site_link_url" : "<SITE_LINK_URL>",
},
{
"site_link_title": "<SITE_LINK_TITLE>",
"site_link_url" : "<SITE_LINK_URL>",
}],
},
"degrees_of_freedom_spec": {
"creative_features_spec": {
"site_extensions": {
"enroll_status": "OPT_IN",
}
}
}
}' \
-F "adset_id=<ADSET_ID>" \
-F "name=New Ad" \
-F "status=PAUSED" \
-F "access_token=<ACCESS_TOKEN>" \
https://graph.facebook.com/v25.0/act_<AD_ACCOUNT_ID>/ads
| Name | Description |
|---|---|
| Specifies the display label of the site link. It can be added in |
| Specifies the url of the site link. It can be added in |
| Specifies the image of the site link. Use either It can be added in |
| Specifies the image of the site link. Use either It can be added in |
| “Add site links”, an Advantage+ Creative optimization that showcases additional URLs below your static single media or dynamic single media when it's likely to improve performance. Set the It can be added in |