See your billable Dynamic Workers right from the dashboard!
Hey there, it's me, Shiichan! Today I found a small but genuinely handy update about seeing exactly what you used, so let me walk you through it.
Cloudflare ChangelogWhat was announced?
In the Cloudflare Changelog, they announced that you can now check your Dynamic Workers usage from the dashboard and the GraphQL API. The number of billable Dynamic Workers invoked during your billing period now shows up right on the Workers overview page in the Cloudflare dashboard.
The story so far
Until now, it was hard to get a quick read on how many billable Dynamic Workers your account had. Even if you wondered mid-cycle "how many have been counted so far?", there wasn't a clear place to check.
What changes
From now on, opening the Workers overview page shows the count of Dynamic Workers that Cloudflare would bill for during the selected billing period. You don't have to wait for the end-of-month invoice to see where you stand, so it's much easier to keep a feel for your costs.
Dive Deep
Beyond the dashboard, you can pull the same number from the GraphQL Analytics API. Use workersInvocationsByOwnerAndScriptGroups and select distinctDynamicWorkerCount.
query getDynamicWorkersCount(
$accountTag: string!
$filter: AccountWorkersInvocationsByOwnerAndScriptGroupsFilter_InputObject
) {
viewer {
accounts(filter: { accountTag: $accountTag }) {
workersInvocationsByOwnerAndScriptGroups(limit: 10000, filter: $filter) {
uniq {
distinctDynamicWorkerCount
}
}
}
}
}
Then set the account and the billing-period date range (date_geq and date_leq) via variables.
{
"accountTag": "YOUR_ACCOUNT_ID",
"filter": {
"date_geq": "2026-06-01",
"date_leq": "2026-06-30"
}
}
One thing to note: Dynamic Workers usage data only goes back to June 1, 2026, so anything before that isn't available. For more, check out Dynamic Workers pricing.
Wrap-up
- The Workers overview page now shows your billable Dynamic Workers count for the billing period
- You can grab the same number via
distinctDynamicWorkerCountin the GraphQL Analytics API - Data starts from June 1, 2026; anything earlier isn't covered
- A quietly useful update for anyone running Dynamic Workers who watches their bill