Thanks for clarifying. There is not any test data that I’m aware of.
To use the GET /1/accounts/:account_id/reach_estimate endpoint, you can make a request similar to the following:
$ twurl -H ads-api.twitter.com "/1/accounts/xxxxx/reach_estimate?product_type=PROMOTED_TWEETS&bid_amount_local_micro=2000000¤cy=USD&campaign_daily_budget_amount_local_micro=5000000&objective=TWEET_ENGAGEMENTS&broad_keywords=twitter" | jq .
{
"data_type": "reach_estimate",
"data": {
"impressions": {
"min": 283,
"max": 425
},
"count": {
"min": 237,
"max": 355
},
"infinite_bid_count": {
"min": 20266601,
"max": 30399901
},
"engagements": {
"min": 7,
"max": 10
},
"estimated_daily_spend_local_micro": {
"min": 4000000,
"max": 6000000
}
},
"request": {
"params": {
"bid_amount_local_micro": 2000000,
"product_type": "PROMOTED_TWEETS",
"objective": "TWEET_ENGAGEMENTS",
"account_id": "18ce54aymz3",
"broad_keywords": [
"twitter"
],
"currency": "USD",
"followers_of_users": null,
"campaign_daily_budget_amount_local_micro": 5000000
}
}
}
You can customize the request to reflect the campaign you’re interested in creating.
Hope this helps!