ToolYour

ToolYour

API Docs

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:

PathDescription
/to-jpgConvert to JPG
/to-pngConvert to PNG
/to-webpConvert to WebP
/to-svgConvert to SVG
/compress-imageCompress image
/to-grayscaleGrayscale
/image-to-pdfImage to PDF
/image-metadataRead metadata

CSV / JSON

PathFile field
/csv-2-jsoncsvFile
/json-2-csvjsonFile

See the Convertors tag in the API reference for the full list.

On this page