The Action Estimate of a given action spec is an approximation of the number of actions this action_spec defines given current activity on Facebook. It also includes the number of actors who are making those actions and the number of friends those actors have.
Note : When querying an action estimate for a newly created Open Graph object there can be a delay of a few hours to a day before the Action Estimate service has enough data to return a non-zero action estimate result.
| Name | Description | Permissions | Returns |
|---|---|---|---|
actions |
The estimated number of times the action defined by this action spec is being performed. | ads_management |
long |
actors |
The estimated number of people who are performing this action | ads_management |
long |
friends |
The estimated number of friends of the people who are performing this action. | ads_management |
long |
To query the action estimate of an action spec, pass in the action spec as a query-string parameter to the actionestimate connection of the Ad account object:
act_AccountID/actionestimate?action_spec=_____
Note that an action_spec is required for accessing /{account-id}/actionestimate.
Below is an example of a response:
{
"data": {
"actions": 10271,
"actors": 1202,
"friends": 282865
}
}