Testiny · Rate Limits

Testiny Rate Limits

Testiny does not publish fixed numeric request-rate limits for its REST API. Practical limits are governed by plan-level resource caps rather than a per-minute request ceiling - the Free tier caps combined test cases, plans, runs, and executions at 1,000, and each plan sets a storage quota (50 GB on Starter, 250 GB on Business, 500 GB on Enterprise) with a 100 MB per-file upload limit for attachments. High-volume writes should use the bulk endpoints (/{entity}/bulk) and the find endpoints' paging (offset/limit) rather than many single-item calls.

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

It captures 4 rate-limit definitions, measuring requests, items, and bytes.

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

Tagged areas include Test Runs, Test Management, QA, Rate Limiting, and Quotas.

4 Limits Throttle: 429
Test RunsTest ManagementQARate LimitingQuotas

Limits

REST API Requests account
requests
not published
No fixed numeric request-rate limit is documented for the Testiny REST API.
Free-Tier Items account
items
1000 combined test cases, plans, runs, and executions
Free plan caps total items; paid plans lift this cap.
Attachment Upload Size request
bytes
100 MB per file
Per-file upload limit for blob attachments across paid plans.
Storage Quota account
bytes
50 GB (Starter) / 250 GB (Business) / 500 GB (Enterprise)
Total attachment/blob storage per plan tier.

Policies

Bulk Operations
Use /{entity}/bulk endpoints to create, update, or delete many entities in a single request instead of many single-item calls.
Paging
Use offset and limit in DataReadParams on find endpoints to page through large result sets.
Backoff Strategy
Clients should implement exponential backoff with jitter and honor Retry-After on any 429 responses.

Sources