Vector Express v2.0
Discover free vector-format conversion paths.
A free API for converting between vector formats such as SVG, DXF, DWG, EPS and PDF. The public convert endpoint lists every available converter with its input and output formats, so you can plan a route before uploading a file. Keyless to browse.
GET https://vector.express/api/v2/public/convert/
{
"converters": [
{
"name": "cad",
"inputFormats": [
"svg"
],
"outputFormats": [
"dxf",
"dwg"
]
},
{
"name": "cad2svg",
"inputFormats": [
"dxf",
"dwg"
],
"outputFormats": [
"svg"
]
}
]
}curl "https://vector.express/api/v2/public/convert/"const res = await fetch("https://vector.express/api/v2/public/convert/");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://vector.express/api/v2/public/convert/")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/public/convert/PROBEDDiscover free vector-format conversion paths.
/publicPublic — documented GET route.
/public/1Public details by ID (example: 1).
/public?limit=10Public — documented GET route.
/public/search?q=testSearch by query parameters.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Vector Express v2.0: common questions
Is Vector Express v2.0 free to use?
Yes — Vector Express v2.0 is a free developer tools API. Free tier: Free. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Vector Express v2.0 need an API key?
No — Vector Express v2.0 needs no API key or signup. You can call it straight away; rate limits still apply (5 req/window · 4 remaining · resets 1783513379).
Can I call Vector Express v2.0 from the browser?
Not directly — Vector Express v2.0 doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is Vector Express v2.0 up right now?
As of our last scheduled check, Vector Express v2.0 is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.