Interface ApiResponseThrottling

interface ApiResponseThrottling {
    limit: number;
    remaining: number;
    reset: number;
}

Properties

Properties

limit: number

Indicates how many requests is allowed per hour (time window).

remaining: number

Indicates how many requests are remaining for the current window.

reset: number

Indicates when the current window ends, in seconds from the current time.