ActionGoogle AnalyticsUpdated September 2026

How do I run a Google Analytics report?

Short answer: You can ga run report in Google Analytics by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Google Analytics GA Run Report action to a workflow, map its 5 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.

GA Run Report in Google Analytics — start free
Inputs

The fields this action accepts.

Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.

FieldTypeRequiredDescription
Property ID
propertyId
stringRequiredProperty ID. Example: 123456789
Start Date
startDate
dateRequiredStart Date. (date/time)
End Date
endDate
dateRequiredEnd Date. (date/time)
Metrics
metrics
stringRequiredComma-separated metric names
Dimensions
dimensions
stringOptionalComma-separated dimension names
Sample request
{
"propertyId": "e.g. 123456789",
"startDate": "{{trigger.startDate}}",
"endDate": "{{trigger.endDate}}",
"metrics": "{{trigger.metrics}}",
"dimensions": "date,country,pagePath"
}
Returns
{
"rows": [
{
"metricValues": [
{
"value": "1500"
},
{
"value": "1200"
},
{
"value": "3500"
}
],
"dimensionValues": [
{
"value": "20260411"
}
]
}
],
"metadata": {
"currencyCode": "USD"
},
"rowCount": 1
}

Use these fields in downstream nodes for routing, logging, or error handling.

FAQ

Questions about GA Run Report.

What does the GA Run Report action do in Google Analytics?
Standard date-range analytics query — GA4 dimensions and metrics. For weekly/monthly digest workflows or for "alert when key metric drops" performance monitoring.
What inputs does GA Run Report require?
Required: Property ID, Start Date, End Date, Metrics. Every input accepts a static value or a variable from any upstream node in your workflow.
Can I use dynamic inputs from earlier workflow nodes?
Yes. Any field on this action can pull values from upstream nodes, whether that's a form response, a trigger payload, an AI output, or a lookup result.
What happens if Google Analytics returns an error?
The run history shows the failed step with its input and the error message Google Analytics returned, so you can fix the input and run the workflow again. Automatic retries are built into HTTP steps only, where you can also set your own retry count and delay.
Does GA Run Report support batch operations?
Run GA Run Report inside a loop to process each item in an array. TinyCommand does not throttle calls for you, so for large arrays add a Delay step if you need to stay within Google Analytics's rate limits.
More actions

Other Google Analytics actions.

GA Run Report in Google Analytics — start free