Get Google Ads conversion stats
<Info>This API is in beta. Endpoints, fields, and behavior may still change, so avoid depending on it in production.</Info>
Returns conversions and conversion value per campaign for a date window.
Only campaigns with activity in the window are returned, and archived campaigns are left out. An account with no synced campaigns returns an empty list.
<Note>These numbers come from Base44's own nightly copy of your Google Ads metrics, not from Google directly, so the last few hours of activity can be missing.</Note>
<Note>start_date and end_date are inclusive and must be YYYY-MM-DD. This endpoint does not reject a malformed date: it compares the value as text, so a date in another format silently matches the wrong days.</Note>
<Note>This endpoint accepts a personal API key. Workspace API keys are not authorized for it and are rejected with a 403.</Note>
Path parameters
ID of the app whose Google Ads conversion tracking you want to manage.
ID of the app whose Google Ads conversion tracking you want to manage.
Query parameters
First day of the window, as YYYY-MM-DD. Inclusive.
First day of the window, as YYYY-MM-DD. Inclusive.
Last day of the window, as YYYY-MM-DD. Inclusive.
Last day of the window, as YYYY-MM-DD. Inclusive.
Response
One entry per campaign with conversions in the window.
Example response
[
{
"campaign_id": "21458812345",
"conversions": 24,
"conversions_value": 1830
}
]Changes
Changed in 1 of the 10 revisions of this API.1
- ○
endpoint added
endpoint-added
- ○