Hi,
I’m using the https://ads-api.twitter.com/5/targeting_criteria/conversations endpoint to retrieve a list of conversations targets to use as targets of a campaign. But I noticed that there is no information about the reach of a conversation in the response. Is there any way to get the reach estimate of a conversation ?
Hey @rodolfo_mmendes
You should be able to get reach data using the reach estimate endpoint, like so:
twurl_ads "/4/accounts/18ce54d4x5t/reach_estimate?objective=TWEET_ENGAGEMENTS&product_type=PROMOTED_TWEETS¤cy=USD&campaign_daily_budget_amount_local_micro=10000000&conversations=9zi" | jq
{
"data": {
"impressions": null,
"count": null,
"infinite_bid_count": {
"min": 3567818,
"max": 5351727
},
"engagements": null,
"estimated_daily_spend_local_micro": null
},
"request": {
"params": {
"conversations": [
"9zi"
],
"product_type": "PROMOTED_TWEETS",
"objective": "TWEET_ENGAGEMENTS",
"account_id": "18ce54d4x5t",
"currency": "USD",
"followers_of_users": null,
"campaign_daily_budget_amount_local_micro": 10000000
}
}
}
Thanks!
1 Like