If you are comfortable with the APIs you can use /api/v2/analytics/conversations/aggregates/query to get this data using the example body below. This should output the number of calls offered for the queue in one hour intervals where a call was offered. I don't think there is a way to only show those intervals via the API but you could then manipulate it with a script to only show one specific interval or give the output to an AI to work out?
{
"granularity": "PT1H",
"interval": "2026-04-01T00:00:00.000Z/2026-05-01T00:00:00.000Z",
"filter": {
"predicates": [
{
"type": "metric",
"dimension": "queueId",
"operator": "matches",
"value": "YourQueueID"
}
],
"type": "and"
},
"metrics": [
"nOffered"
]
}
------------------------------
Savino Ricci
Senior Technical Consultant
------------------------------