ApiUsage Data Response
This object represents statistics about your current API usage this cycle, tied to
your API key. Individual requests made to different resources may consume one or more
"points", which can be tracked with this response object.
Properties
numTotalRequestPoints
integer
The total number of request "points" your API key has consumed this cycle.
numDirectionRequestPoints
integer
The number of request "points" your API key has consumed this cycle for direction requests.
numForecastRequestPoints
integer
The number of request "points" your API key has consumed this cycle for forecast requests.
numGeocodeRequestPoints
integer
The number of request "points" your API key has consumed this cycle for geocode requests.
requestPointQuota
integer
The maximum request points that may be used this cycle before requests become
quota-limited. A value of
null
indicates no quota limit set on your API key.cycleResetTime
integer
The UNIX timestamp at which your cycle is due to reset. (GMT timezone)
Sample output
{ "cycleResetTime": 1634342400000, "numDirectionRequestPoints": 200, "numForecastRequestPoints": 150, "numGeocodeRequestPoints": 500, "numTotalRequestPoints": 850, "requestPointQuota": 500000 }