Documentation

Everything you need to integrate ParseKit.

Getting Started

  1. 1. Create an account — Sign up at /signup to get your free API key.
  2. 2. Make your first request — Upload a document to the /analyze endpoint.
  3. 3. Get structured results — Receive JSON with summary, key points, entities, and more.
# 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"

Response Format

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"
  }
}