Skip to main content

Quickstart

Follow these steps to make your first request:

  1. Get an API key from your dashboard.
  2. Add the header x-api-co-id: YOUR_API_KEY.
  3. Pick an endpoint from the product reference (for example /api/sim-extractor).
  4. Send a request with the correct payload (JSON or multipart as required).

Sample curl (replace <endpoint> and payload as needed):

curl -X POST "<endpoint>" \
-H "x-api-co-id: YOUR_API_KEY" \
-F "file=@/path/to/image.jpg"

Tips:

  • For JSON endpoints, swap -F for -H "Content-Type: application/json" -d '{...}'.
  • Check the product page for required fields and size/type limits.
  • For best OCR results, use clear, high-resolution images without glare.