Everything you need to integrate ParseKit.
# Install nothing — just use cURL, fetch, or any HTTP client
curl -X POST https://api.parsekit.ai/api/v1/analyze \
-H "x-api-key: sk_live_your_key_here" \
-F "file=@document.pdf"All responses follow the same envelope format:
{
"success": true,
"data": { ... },
"timestamp": "2026-02-09T12:00:00Z",
"processing_time_ms": 1234
}
// Error response:
{
"success": false,
"error": {
"code": "RATE_LIMIT_EXCEEDED",
"message": "Monthly request limit reached"
}
}