curl -G \
-d "access_token=<ACCESS_TOKEN>" \
"https://graph.facebook.com/v<API_VERSION>/act_<AD_ACCOUNT_ID>/ads_volume"
{"data":[{"ads_running_or_in_review_count":2}]}
effective_status, then configured_status, and the ad account’s status:effective_status of 1 - active, we consider it in running or in review state.configured_status of active and effective_status of 9 - pending review or 17 - pending processing, we consider it a running or in review.1 - active, 8 - pending settlement, or 9 - in grace period.show_breakdown_by_actor field to get a breakdown of ad limits by a specific actor_id:curl -G \
-d "show_breakdown_by_actor=true" \
-d "access_token=<ACCESS_TOKEN>" \
"https://graph.facebook.com/v<API_VERSION>/act_<AD_ACCOUNT_ID>/ads_volume"
{
"data": [
{
"ads_running_or_in_review_count": 0,
"current_account_ads_running_or_in_review_count": 0,
"actor_id": "<ACTOR_ID_1>",
"recommendations": [
]
},
{
"ads_running_or_in_review_count": 2,
"current_account_ads_running_or_in_review_count": 2,
"actor_id": "<ACTOR_ID_2>",
"recommendations": [
]
}
],
}
page_id to get the ad limits for a specific page:curl -G \
-d "page_id=<PAGE_ID>" \
-d "access_token=<ACCESS_TOKEN>" \
"https://graph.facebook.com/v<API_VERSION>/act_<AD_ACCOUNT_ID>/ads_volume"
{
"data": [
{
"ads_running_or_in_review_count": 2,
"current_account_ads_running_or_in_review_count": 2,
"actor_id": "<ACTOR_ID>",
"recommendations": [
]
}
],
}
| Field | Description |
|---|---|
actor_id | Actor that the limit is enforced against. Currently, this is always the page ID. |
ads_running_or_in_review_count | Number of ads running or in review for a specific actor. |
current_account_ads_running_or_in_review_count | Number of ads running or in review within the current ad account on a specific actor. |
actor_name | Actor that the ads volume aggregated on. Currently, it can only be page name. |
ad_limit_scope_business | Used in cases where an ad account belongs to a Business Manager and the ad account is subject to Business Manager level ad limits.
This field has the business that defines the ad limits for an ad account. |
ad_limit_scope_business_manager_id | Used in cases where an ad account belongs to a Business Manager and the ad account is subject to Business Manager level ad limits. This field has the Business Manager ID for a business that defines the ad limits for an ad account. |
ad_limit_set_by_page_admin | Ad limit set by a page admin for the business that owns the ad account. |
ads_running_or_in_review_count_subject_to_limit_set_by_page | Number of ads running or in review for a group of ad accounts. In this case, the group can contain ad accounts that belong to a business or individual ad accounts.
If ad limit is not set by the page owner, it returns null.
If ad limit is set by the page owner, it returns the number of ads running or in review for the group of ad accounts. |
future_limit_activation_date | Starting date of ad limit that will be effective in the future. |
future_limit_on_ads_running_or_in_review | Ad limit that will be effective in the future. This limit is related to the number of ads running or in review for the given actor. |
limit_on_ads_running_or_in_review | Current ad limit for a given actor ID. This limit is related to the number of ads running or in review. |
recommendations | Recommendations to help reduce the ad volume. Currently, supported values are:
More information can be found in the Business Help Center. |
| Field | Description |
|---|---|
recommendation_type | Type of the recommendation to help reduce the ad volume. Currently, supported values are:
See more information about managing ad volume. |