Printavo · Rate Limits

Printavo Rate Limits

Printavo API v2 (GraphQL) enforces three documented limits - a request-rate limit, a GraphQL query-complexity limit, and a maximum query depth. Requests are rate-limited to 10 requests every 5 seconds, scoped per user email OR per IP address. Each GraphQL operation must stay under a complexity score of 25000 and a nesting depth of 13. Connections default to 25 nodes per page and page with cursor arguments.

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

It captures 4 rate-limit definitions, measuring requests, complexity, depth, and nodes.

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

Tagged areas include Print Shop Management, GraphQL, Rate Limiting, Quotas, and Query Complexity.

4 Limits Throttle: 429
Print Shop ManagementGraphQLRate LimitingQuotasQuery Complexity

Limits

Request Rate user-or-ip
requests
10 per 5 seconds
Scoped per user email or per IP address. Exceeding it returns HTTP 429.
Query Complexity operation
complexity
25000
Each GraphQL operation is scored; requests over the complexity limit are rejected.
Query Depth operation
depth
13
Maximum nesting depth permitted in a single GraphQL query.
Connection Page Size connection
nodes
25 default
Connections return 25 nodes per page by default; page with first/last/after/before cursor args.

Policies

Backoff Strategy
Clients should throttle to stay within 10 requests per 5 seconds and implement exponential backoff with jitter on HTTP 429 responses.
Query Budgeting
Trim field selections and connection page sizes to stay under the 25000 complexity score and depth of 13; GraphQL lets you request only the fields you need.
Cursor Pagination
Use cursor-based pagination (first/last/after/before) rather than deep single queries to spread load across requests.

Sources