View the volume of ads running or in review for your ad accounts. These ads count against the ads limit per page that we enacted in early 2021. Query the number of ads running or in review for a given ad account.
To see the ad volume for your ad account:
curl -G \ -d "access_token=<ACCESS_TOKEN>" \ "https://graph.facebook.com/v<API_VERSION>/act_<AD_ACCOUNT_ID>/ads_volume"
Response
{"data":[{"ads_running_or_in_review_count":2}]}
For information on managing ad volume, see About Managing Ad Volume.
To see if an ad is running or in review, we check 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
. We also determine if an ad is running or in review based on the ad set's schedule:
For example, if the ad set is scheduled to run in the future, the ads are not running or in review. However, if the ad set is scheduled to run from now until 3 months from now, we consider the ads running or in review.
If you are using special ads scheduling features, such as day-parting, we consider the ad running or in review the whole day not just for the part of the day when the ad starts running.
Use the 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"
Response
{ "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": [ ] } ], }
Use 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"
Response
{ "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 that the limit is enforced against. Currently, this is always the page ID. |
| Number of ads running or in review for a specific actor. |
| Number of ads running or in review within the current ad account on a specific actor. |
| Actor that the ads volume aggregated on. Currently, it can only be page name. |
| 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. |
| 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 a page admin for the business that owns the ad account. |
| 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 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. |
| Starting date of ad limit that will be effective in the future. |
| 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. |
| Current ad limit for a given actor ID. This limit is related to the number of ads running or in review. |
| Recommendations to help reduce the ad volume. Currently, supported values are:
More information can be found in the Business Help Center. |
Field | Description |
---|---|
| Type of the recommendation to help reduce the ad volume. Currently, supported values are:
See more information about managing ad volume. |