Type Alias RateLimitData

RateLimitData: {
    __typename?: "RateLimitData";
    limitPerHour: Scalars["Int"];
    pointsResetIn: Scalars["Int"];
    pointsSpentThisHour: Scalars["Float"];
}

A way to obtain your current rate limit usage.

Type declaration

  • Optional__typename?: "RateLimitData"
  • limitPerHour: Scalars["Int"]

    The total amount of points this API key can spend per hour.

  • pointsResetIn: Scalars["Int"]

    The number of seconds remaining until the points reset.

  • pointsSpentThisHour: Scalars["Float"]

    The total amount of points spent during this hour.