Integrate AI-powered vectorization into your app. Convert PNG, JPG, and other images to clean SVGs with a single API call.
Sign up for free and generate your API key from the dashboard.
POST your image URL or base64 data to our conversion endpoint.
Receive your vectorized SVG file in seconds. Done!
// Convert an image to SVG
const response = await fetch('https://vectosolve.com/api/v1/convert', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({
image_url: 'https://example.com/logo.png',
// or use base64:
// image_base64: 'data:image/png;base64,...',
options: {
colors: 'auto', // auto, 2-256, or 'bw'
detail: 'high', // low, medium, high
background: 'remove', // keep, remove, transparent
format: 'svg', // svg, eps, pdf
}
})
});
const result = await response.json();
console.log(result.svg_url); // Download URL
console.log(result.credits_remaining);import requests
response = requests.post(
'https://vectosolve.com/api/v1/convert',
headers={'Authorization': 'Bearer YOUR_API_KEY'},
json={
'image_url': 'https://example.com/logo.png',
'options': {
'colors': 'auto',
'detail': 'high',
'background': 'remove',
}
}
)
result = response.json()
print(result['svg_url'])curl -X POST https://vectosolve.com/api/v1/convert \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://example.com/logo.png",
"options": {
"colors": "auto",
"detail": "high",
"background": "remove"
}
}'/api/v1/convertConvert an image to SVG{ svg_url, preview_url, file_size, colors_detected, credits_remaining }/api/v1/remove-bgRemove background from an image{ image_url, file_size, credits_remaining }/api/v1/upscaleAI upscale an image (2x or 4x){ image_url, width, height, credits_remaining }/api/v1/creditsCheck remaining credits{ credits_remaining, plan, conversions_this_month }Same credits as the web app. 1 API call = 1 credit.
Auto-vectorize product images for scalable graphics
Add vectorization to your design app or plugin
Convert customer uploads to print-ready vectors
Let users convert images to cut-ready SVGs
Get your free API key in 30 seconds. No credit card required.
Get Free API KeyQuestions? Email us at support@vectosolve.com