Repsly · Rate Limits

Repsly Rate Limits

Repsly does not publish fixed numeric request-rate limits (requests per minute/hour) for the Web API (v3). The dominant governance mechanism is batch pagination: every export endpoint returns a maximum of 50 records per call, and integrations must iterate - passing the returned timestamp or last-ID cursor - until the response MetaCollectionResult.TotalCount is 0. This bounds how much data any single call moves and shapes polling-style integrations. Import (POST) calls similarly accept bounded batches and are processed asynchronously, with an importJobID to poll for completion. Access is scoped to the account's API credentials (Basic auth over SSL).

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

It captures 3 rate-limit definitions, measuring records, requests, and jobs.

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

Tagged areas include Retail Execution, Field Sales, CPG, Rate Limiting, and Quotas.

3 Limits Throttle: 429
Retail ExecutionField SalesCPGRate LimitingQuotas

Limits

Export Batch Size request
records
50 per call
Every export endpoint returns at most 50 records; iterate with the cursor until TotalCount is 0.
API Request Rate account
requests
not published
No fixed numeric requests-per-minute/hour limit is documented for the Web API.
Import Processing account
jobs
asynchronous
Imports are queued and processed asynchronously; poll /export/importStatus/{importJobID} for completion.

Policies

Cursor Pagination
Export endpoints page by timestamp (lastTimestamp) or last-ID cursor; continue requesting until MetaCollectionResult.TotalCount is 0.
Asynchronous Imports
Import (POST) calls return an importJobID; the job status must be polled rather than assuming immediate completion.
Backoff Strategy
Clients should implement retry with exponential backoff and honor Retry-After on any 429 responses.

Sources