AccountRateLimitStatus

Represents the rate limit status of the authenticated user account.

Fields

MaxHitsPerHour
The maximum number of hits permitted per hour.
HitsRemaining
The number of hits remaining before the user account will be rate-limited.
Resets
The date/time (UTC) when the rate limit for the user account will be reset.

Examples

JSON body:

{
  "MaxHitsPerHour": 240,
  "HitsRemaining": 238,
  "Resets": "2024-10-02T15:26:07.7833951Z"
}

XML body:

<?xml version="1.0"?>
<AccountRateLimitStatusResource xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <MaxHitsPerHour>240</MaxHitsPerHour>
  <HitsRemaining>238</HitsRemaining>
  <Resets>2024-10-02T15:26:07.7833951Z</Resets>
</AccountRateLimitStatusResource>

CSV body:

MaxHitsPerHour,HitsRemaining,Resets
240,238,2024-10-02T15:26:07.7833951Z