OBJECT

RateLimitData

A way to obtain your current rate limit usage.

link GraphQL Schema definition

  • type RateLimitData {
  • # The total amount of points this API key can spend per hour.
  • limitPerHour: Int!
  • # The total amount of points spent during this hour.
  • pointsSpentThisHour: Float!
  • # The number of seconds remaining until the points reset.
  • pointsResetIn: Int!
  • }

link Require by