Regions
Get Facebook Ad Regions by Name
GET
Available on Premium, Business, Enterprise plans.
Search for regions (states, provinces, etc.) to be used for targeting when boosting an ad.
Regions use Facebook's
keyidentifier. Use thiskeywhen boosting ads with region targeting.If a returned region has supportsRegion true, you can target this region. If supportsCity is true, the region has city codes.
To get all countries that support region targeting, call this endpoint without query parameters.
- Results may vary based on Facebook data availability.
Header Parameters
AuthorizationstringrequiredProfile-KeystringQuery Parameters
searchstringThe search string to filter regions. Provide a partial or full region name.
limitnumberdefault: 25Maximum number of regions to return.
# All countries that support region targeting
curl \
-H "Authorization: Bearer API_KEY" \
-X GET "https://api.acme.com/api/ads/facebook/regions"{
"status": "success",
"regions": [
{
"key": "3843",
"name": "Alabama",
"type": "region",
"countryCode": "US",
"countryName": "United States",
"supportsRegion": true,
"supportsCity": true
},
{
"key": "3844",
"name": "Alaska",
"type": "region",
"countryCode": "US",
"countryName": "United States",
"supportsRegion": true,
"supportsCity": true
}
],
"count": 2
}