Easily convert your files to any format
Simply send your file to our API and it will be converted to your desierd format based on your very own templates. It works great with your existing workflow as it's a simple REST API.
Intuitive dashboard
Our dashboard is designed to be simple and easy to use so you can get started right away. You'll get everything you need to manage your templates from one single view.
- Editors
The dashboard contains three editor so you can manage your input, output and template data in one single place.
- List templates.
Create, view and edit your templates in one place. You can easily see all the templates you have created and edit them as needed.
- Manage API keys.
Generate and your personal API key to easily integrate Convrtly into your workflow.
Integrate easily
One endpoint
With just one endpoint you can integrate our API into your application, systems, and workflows in no time.
- Convert
- Select your template and convert your files in miliseconds with a simple POST request
- Templates.
- Get a list of all your templates to quickly get an overwiew.
import axios from "axios";
import fs from "fs";
async function convertXMLToEDI() {
const headers = {
"Authorization": "Bearer <API_KEY>"
}
const body = {
file: fs.createReadStream("path/to/file.xml")
}
const url = "https://convrtly.com/api/convert?template=D96A_ORDRSP"
const response = await axios.post(url, body, { headers }
const ediFile = response.data
}
Sign up to Convrtly
Sign up and create your first template right away and integrate it into your business.