Skio · Rate Limits

Skio Rate Limits

Skio's public GraphQL API publishes explicit limits per API token: a maximum query depth of 4 nested levels, a maximum of 100 nodes per request, and a sustained rate of 2,000 requests per minute per API token. These are drawn directly from Skio's API reference at code.skio.com. Query cost is therefore shaped by both request rate and per-query complexity (depth and node count), in the typical Hasura style.

Skio Rate Limits is the machine-readable rate-limit profile for Skio on the APIs.io network, conforming to the API Commons Rate Limits specification.

It captures 3 rate-limit definitions, measuring requests, nesting_levels, and nodes.

The profile also includes 2 backoff/retry policies defined and response codes documented for throttled.

Tagged areas include Subscriptions, Shopify, GraphQL, Rate Limiting, and Quotas.

3 Limits Throttle: 429
SubscriptionsShopifyGraphQLRate LimitingQuotas

Limits

Requests Per Minute token
requests
2000 per minute per API token
Sustained request-rate cap enforced per API token.
Query Depth request
nesting_levels
4
A single GraphQL query may nest at most 4 levels deep.
Node Limit request
nodes
100
A single request may return at most 100 nodes.

Policies

Backoff Strategy
Clients should implement exponential backoff with jitter and honor Retry-After on 429 responses.
Query Complexity Management
Keep queries within the 4-level depth and 100-node ceilings by paginating with limit/offset and selecting only needed fields, rather than deeply nesting related objects.

Sources