Quickstart
Follow these steps to make your first request:
- Get an API key from your dashboard.
- Add the header
x-api-co-id: YOUR_API_KEY. - Pick an endpoint from the product reference (for example
/api/sim-extractor). - 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
-Ffor-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.