How to get Requests today through API

Interact with Cloudflare's products and services via the Cloudflare API
curl -X POST "https://api.cloudflare.com/client/v4/graphql" \
-H "Authorization: Bearer {apiToken}" \
-H "Content-Type: application/json" \
--data '{"query":"query getServiceRequestsQuery($accountTag: String, $filter: ZoneWorkersRequestsFilter_InputObject) { viewer { accounts(filter: { accountTag: $accountTag }) { workersInvocationsAdaptive(limit: 10000, filter: $filter) { sum { requests } } } } }","variables":{"accountTag":"{accountId}}","filter":{"AND":[{"datetimeHour_leq":"2024-06-26T15:25:19Z","datetimeHour_geq":"2024-06-26T00:00:00Z"}]}}}'