Convertors
Image and CSV conversion APIs.
Base path: /api/v1/convertors
All endpoints are POST with multipart/form-data and require X-Api-Key.
Image uploads
Most routes accept an image file field:
curl -X POST "https://api.toolyour.com/api/v1/convertors/to-jpg" \
-H "X-Api-Key: $API_KEY" \
-F "image=@photo.png"Common routes:
| Path | Description |
|---|---|
/to-jpg | Convert to JPG |
/to-png | Convert to PNG |
/to-webp | Convert to WebP |
/to-svg | Convert to SVG |
/compress-image | Compress image |
/to-grayscale | Grayscale |
/image-to-pdf | Image to PDF |
/image-metadata | Read metadata |
CSV / JSON
| Path | File field |
|---|---|
/csv-2-json | csvFile |
/json-2-csv | jsonFile |
See the Convertors tag in the API reference for the full list.