Get logs per hour
GET
/v1/log/logs_per_hour/
const url = 'https://example.com/v1/log/logs_per_hour/';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/v1/log/logs_per_hour/ \ --header 'Authorization: Bearer <token>'Return a count of log entries per hour.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Media typeapplication/json
Array<object>
object
timestamp_hour
required
string format: date-time
count
required
integer
Examplegenerated
[ { "timestamp_hour": "2026-04-15T12:00:00Z", "count": 1 }]