airbyte-integrations/connectors/source-google-ads/BOOTSTRAP.md
Link to API Docs is here.
The GAds API is basically a SQL interface on top of the Google Ads API resources. The reference for the SQL language (called GAQL) can be found here.
The resources are listed here.
When querying data, there are three categories of information that can be fetched:
If you want to get a representation of the raw resources in the API e.g: just know what are all the ads or campaigns in your Google account, you would query only for attributes e.g. SELECT campaign.title FROM campaigns.
But if you wanted to get reports about the data (a common use case is impression data for an ad campaign) then you would query for metrics, potentially with segmentation.
See the links below for information about specific streams and some nuances about the connector:
Google Ads tab)