This process returns information about your call limits. Note that the limits can be adjusted by WRTM staff which would adjust the return values to what your api key is configured for. Secret Hmac Required. Cache Time 30 Seconds.
GET
/Api/Read/Limits
curl \
--request GET 'https://api.whyreadthemanual.com/v1.0/Api/Read/Limits' \
--header "X-ApiKey: $API_KEY" \
--header "X-ApiDate: $API_KEY" \
--header "X-ApiHmac: $API_KEY"
Response examples (200)
{
"1Hr": {
"Limit": 500,
"Remain": 222,
"TimeLeft": "43 Minutes",
"ResetDate": "Fri, 12 May 2023 20:07:00 GMT"
},
"1Mon": {
"Limit": 100000,
"Remain": 98379,
"TimeLeft": "4.3 Weeks",
"ResetDate": "Mon, 12 Jun 2023 00:00:00 GMT"
},
"5Min": {
"Limit": 3,
"Remain": 22,
"TimeLeft": "4 Seconds",
"ResetDate": "Fri, 12 May 2023 19:07:27 GMT"
}
}