JPEGtoSVG.com LogoJPEGtoSVG.comVector Studio

API docs

Convert images to SVG from your app

The JPEGtoSVG.com API is designed for SaaS products, marketplaces, print workflows, and creator tools that need online vectorization for JPEG, JPG, PNG, WebP, photos, logos, and artwork.

Example request

curl -X POST https://jpegtosvg.com/api/public/convert \
  -H "Authorization: Bearer jts_live_your_api_key" \
  -F "file=@logo.jpg" \
  -F 'settings={"mode":"logo","colors":8,"ignoreWhite":true}'

Response shape

{
  "jobId": "job_123",
  "status": "completed",
  "svg": "<svg ...>",
  "fileName": "logo.svg",
  "pathCount": 384,
  "score": 91,
  "outputSize": 42810
}
MethodEndpointPurpose
POST/api/auth/registerCreate a shared website/APK account.
POST/api/auth/loginLogin and receive cookie plus bearer token.
GET/api/auth/meRead the current authenticated session.
POST/api/convert/image-to-svgShared single-image conversion endpoint.
POST/api/convert/batchShared batch conversion endpoint.
GET/api/conversions/historyFetch authenticated conversion history.
POST/api/share/createCreate a public share result from a saved conversion.
GET/api/plansRead shared Free, Pro, and Agency plan data.
POST/api/subscription/upgradeStart a shared plan upgrade flow.
POST/api/public/convertAgency API-key conversion endpoint.