For Agents
Convert OpenXml and OpenOffice documents to SVG vector format through a single API call.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Doc Converter, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.
What an agent can do with Doc Converter API.
Convert OpenXml documents (DOCX, PPTX, XLSX) to scalable SVG output
Transform OpenOffice format files into web-ready vector graphics
Produce resolution-independent SVG from slide and document content
Accept file uploads and return converted vector output in a single request
GET STARTED
Use for: I need to convert a PowerPoint file to SVG, I want to transform a DOCX document into a vector format, Convert an OpenOffice presentation to SVG for web display, Get an SVG rendering of a spreadsheet file
Not supported: Does not handle PDF generation, OCR text extraction, or image format conversion — use for office-to-SVG vector conversion only.
Jentic publishes the only available OpenAPI document for Doc Converter, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Doc Converter, keeping it validated and agent-ready. The Presalytics Doc Converter API transforms OpenXml and OpenOffice document formats into vector SVG files through a single conversion endpoint. It accepts document uploads and returns high-fidelity SVG output suitable for web rendering, embedding in applications, or further processing in design pipelines.
Patterns agents use Doc Converter API for, with concrete tasks.
★ Document-to-SVG for Web Embedding
Convert office documents to SVG format for embedding directly in web applications without requiring browser plugins or document viewers. The Doc Converter API accepts common office file formats and returns SVG output that renders at any resolution, making it suitable for responsive web layouts, documentation portals, and content management systems that need to display document previews inline.
Upload a PPTX file to the /svgconvert endpoint and retrieve the SVG output for embedding in a web page
Design Pipeline Preprocessing
Preprocess office documents into SVG vector format as an input step for design automation pipelines. By converting source documents to SVG first, downstream tools can manipulate individual elements, apply transformations, and composite outputs without rasterization losses. This is useful for report generation systems that combine document content with custom branding or layout templates.
Convert an XLSX spreadsheet to SVG via the /svgconvert endpoint and pass the result to a downstream image composition step
AI Agent Document Conversion
AI agents use the Doc Converter through Jentic to transform office documents into SVG as part of automated content processing pipelines. The agent searches for document conversion operations, loads the endpoint schema with supported input formats, and executes the conversion without manual integration. This enables agents to handle format transformation as an intermediate step in larger document workflows.
Search Jentic for 'convert office document to SVG', load the svgconvert operation schema, and execute with a sample DOCX file
1 endpoints — jentic publishes the only available openapi specification for doc converter, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/svgconvert
Convert an office document to SVG format
/svgconvert
Convert an office document to SVG format
Three things that make agents converge on Jentic-routed access.
Credential isolation
The Doc Converter currently operates without authentication. If access controls are added, Jentic will store credentials in the MAXsystem vault and provide agents with pre-configured access.
Intent-based discovery
Agents search by intent (e.g., 'convert office document to SVG') and Jentic returns the Doc Converter svgconvert operation with its input schema showing supported file formats.
Time to first call
Direct integration: 1-2 hours for file upload handling and response parsing. Through Jentic: under 15 minutes — search, load schema, execute with file.
Alternatives and complements available in the Jentic catalogue.
ConvertAPI
Broader file conversion supporting 200+ format pairs beyond just SVG output
Choose ConvertAPI when you need conversion between many format pairs (PDF, images, office) rather than specifically SVG output.
Cloudmersive OCR
Extract text content from documents where Doc Converter handles visual rendering
Use Cloudmersive OCR alongside Doc Converter when you need both visual SVG rendering and extracted text content from the same document.
Doc Converter
Identical conversion service available under a different API slug
This is the same service under a different slug — use either interchangeably.
Specific to using Doc Converter API through Jentic.
Why is there no official OpenAPI spec for Doc Converter?
Presalytics does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Doc Converter via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Doc Converter API use?
The Doc Converter API does not require authentication for the SVG conversion endpoint based on the current specification. If access controls are added, Jentic will handle credential management through the MAXsystem vault automatically.
What input file formats does the Doc Converter support?
The API supports OpenXml formats (DOCX, PPTX, XLSX) and OpenOffice document formats (ODT, ODP, ODS). Files are uploaded to the /svgconvert endpoint and the response contains the converted SVG output.
What are the rate limits for the Doc Converter API?
The specification does not document explicit rate limits. For production workloads, implement request throttling on the client side and monitor response times to detect any server-side throttling.
How do I convert a document to SVG through Jentic?
Install the SDK with pip install jentic, set your JENTIC_AGENT_API_KEY, then search for 'convert document to SVG'. Jentic returns the svgconvert operation with its schema showing the required file upload format. Execute the operation with your document file to receive SVG output.