When Google migrated from Universal Analytics, they automatically generated new GA4 properties for existing accounts. I’m trying to find a way to get a complete list of all my GA4 properties along with their measurement IDs. I manage multiple websites and need this information for documentation purposes. I’ve searched through the Google Analytics interface but can’t locate any export or bulk view option that shows all measurement IDs at once. Has anyone found a method to extract this data without having to manually check each property individually? I’m hoping there’s a built-in feature I missed before considering other approaches.
GA4 doesn’t have bulk export built-in, but the Analytics Reporting API works great for this. I’ve done this exact thing when managing multiple client properties.
Use the Google Analytics Admin API to pull all property details. Set up a script that authenticates with your Google account and hits the accounts.properties.list endpoint. You’ll get all GA4 properties with measurement IDs in one shot.
Not a coder? Try Google Analytics Query Explorer or API Explorer in your browser. Both let you make API calls without writing code - just authenticate and run the properties list query.
You can also try Google Analytics Intelligence. Ask “show me all my properties” and it sometimes shows measurement IDs with property names. Not always reliable but worth a quick try.
For ongoing data extraction beyond measurement IDs, this video covers good export methods:
The API saved me hours auditing 40+ properties last year. Way better than clicking through each one.