---
title: Track Dynamic Workers usage from the dashboard and GraphQL API
description: View the number of billable Dynamic Workers invoked during your billing period from the dashboard or GraphQL Analytics API.
image: https://developers.cloudflare.com/changelog-preview.png
---

> Documentation Index  
> Fetch the complete documentation index at: https://developers.cloudflare.com/changelog/llms.txt  
> Use this file to discover all available pages before exploring further. 

[Skip to content](#%5Ftop) 

# Changelog

New updates and improvements at Cloudflare.

[ Subscribe to RSS ](https://developers.cloudflare.com/changelog/rss/index.xml) [ View RSS feeds ](https://developers.cloudflare.com/fundamentals/new-features/available-rss-feeds/) 

![hero image](https://developers.cloudflare.com/_astro/hero.CVYJHPAd_26AMqX.svg) 

[ ← Back to all posts ](https://developers.cloudflare.com/changelog/) 

## Track Dynamic Workers usage from the dashboard and GraphQL API

Jun 11, 2026 

[ Workers ](https://developers.cloudflare.com/workers/) 

![Dynamic Workers usage on the Workers overview page](https://developers.cloudflare.com/_astro/dynamic-workers-count.BcGsgQ0m_ZBdT2X.webp) 

Customers can now view the number of [Dynamic Workers](https://developers.cloudflare.com/dynamic-workers/) invoked during their billing period from the Workers overview page in the Cloudflare dashboard.

This count reflects the number of Dynamic Workers that Cloudflare would bill for during the selected billing period. Dynamic Workers usage data only goes back to June 1, 2026.

You can also query this count through the [GraphQL Analytics API](https://developers.cloudflare.com/analytics/graphql-api/) by using `workersInvocationsByOwnerAndScriptGroups` and selecting `distinctDynamicWorkerCount`:

```
query getDynamicWorkersCount(  $accountTag: string!  $filter: AccountWorkersInvocationsByOwnerAndScriptGroupsFilter_InputObject) {  viewer {    accounts(filter: { accountTag: $accountTag }) {      workersInvocationsByOwnerAndScriptGroups(limit: 10000, filter: $filter) {        uniq {          distinctDynamicWorkerCount        }      }    }  }}
```

Use variables to set the account and billing-period date range:

```
{  "accountTag": "<ACCOUNT_ID>",  "filter": {    "date_geq": "2026-06-01",    "date_leq": "2026-06-30"  }}
```

For more information, refer to [Dynamic Workers pricing](https://developers.cloudflare.com/dynamic-workers/pricing/).

```json
{"@context":"https://schema.org","@type":"BlogPosting","@id":"https://developers.cloudflare.com/changelog/post/2026-06-11-dynamic-workers-count/#page","headline":"Track Dynamic Workers usage from the dashboard and GraphQL API · Changelog","description":"View the number of billable Dynamic Workers invoked during your billing period from the dashboard or GraphQL Analytics API.","url":"https://developers.cloudflare.com/changelog/post/2026-06-11-dynamic-workers-count/","inLanguage":"en","image":"https://developers.cloudflare.com/changelog-preview.png","dateModified":"2026-06-11","datePublished":"2026-06-11","publisher":{"@type":"Organization","name":"Cloudflare","url":"https://www.cloudflare.com/"},"isPartOf":{"@type":"WebSite","@id":"https://developers.cloudflare.com/#website","name":"Cloudflare Docs","url":"https://developers.cloudflare.com/"}}
```
