Rate limit
Each organization can make up to 10 requests per minute to the parse endpoint. The limit is shared across all of your organization’s API keys. If you exceed it, the request is rejected with a429 status and a Retry-After header telling you how many seconds to wait:
Retry-After and retry after that delay. Building in exponential backoff is good practice for any production integration.
Document size
A single document can be at most 50 pages. Larger documents are rejected with a413 status before any parsing happens, so an oversized file never consumes credits.
If you need to parse a document over 50 pages, split it into smaller files and send them as separate requests.