Get a human-readable descriptions for a set of targeting specs. To read targeting descriptions for specific ads make an HTTP GET to https://graph.facebook.com/{AD_ID}/targetingsentencelines.
To get targetingsentencelines connection of an existing ad:
curl -G \
-d 'access_token=<ACCESS_TOKEN>' \
https://graph.facebook.com/v24.0/<AD_ID>/targetingsentencelines
The response:
{
"id": "<AD_ID>/targetingsentencelines",
"targetingsentencelines": [
{
"content": "Location - Living In:",
"children": [
"Japan",
"United States"
]
},
{
"content": "Age:",
"children": [
"20 - 24"
]
},
{
"content": "Gender:",
"children": [
"Male"
]
}]
}Responses contain these fields:
| Name | Description |
|---|---|
type: string | ID of |
type: array of JSON objects | Human-readable description of the targeting spec. Each object contains |
You can also get targeting descriptions a targeting spec with a HTTP GET for an ads account at https://graph.facebook.com/{AD_ACCOUNT_ID}/targetingsentencelines.
For example, to get targeting descriptions for people who live in the US or Japan and are males between the age of 20-24:
curl -G \
--data-urlencode 'targeting_spec={
"age_max": 24,
"age_min": 20,
"genders": [1],
"geo_locations": {"countries":["US","JP"]}
}' \
-d 'access_token=<ACCESS_TOKEN>' \
https://graph.facebook.com/v24.0/act_<AD_ACCOUNT_ID>/targetingsentencelines
Response:
{
"params": {
"genders": [1],
"age_min": 20,
"age_max": 24,
"geo_locations": {
"countries": [
"US",
"JP"
]
}
},
"targetingsentencelines": [{
"content": "Location - Living In:",
"children": [
"Japan",
"United States"
]
}, {
"content": "Age:",
"children": [
"20 - 24"
]
}, {
"content": "Gender:",
"children": [
"Male"
]
}]
}Additional parameters include:
| Name | Description |
|---|---|
type: JSON object | Required. Get targeting description for this targeting specs. |
type: bool | Optional. Whether response has requested |
Responses have these fields:
| Name | Description |
|---|---|
type: array of JSON objects | The human-readable description of targeting spec. Each object has |
type: JSON object | The targeting spec you provided. |