Integration
Save time by automating your workflow
Integrate Shipmondo with your systems and automate your freight booking. Your order and shipment information is automatically imported and you can customize the integrations for your workflow and decide the degree of automation. You can connect your systems in several ways.
E-commerce systems
Connect your webshop or e-commerce tool and manage orders and shipping in one system. Pick, pack and print shipping labels efficiently while keeping your customers informed during the process.
ERP and accounting systems
Have your orders automatically imported to Shipmondo. Import orders/invoices from your accounting system, book freight, and print shipping labels for your orders. Got a webshop? Automate your bookkeeping of sales orders in your accounting system.
Payment gateways
Integrate your payment gateways and manage orders and payments in Shipmondo. Capture payments and make refunds as an incorporated part of your workflow and return flow.
// Create shipment (code example in JavaScript)
const data = JSON.stringify({
own_agreement: false,
label_format: 'a4_pdf',
product_code: 'GLSDK_SD',
service_codes: 'EMAIL_NT,SMS_NT',
reference: 'Order 10001',
automatic_select_service_point: true,
parties: [
{
type: 'sender',
name: 'Min Virksomhed ApS',
attention: 'Lene Hansen',
address1: 'Hvilehøjvej 25',
postal_code: '5220',
city: 'Odense SØ',
country_code: 'DK',
email: 'info@minvirksomhed.dk',
phone: '70400407'
},
{
type: 'receiver',
name: 'Lene Hansen',
address1: 'Skibhusvej 52',
postal_code: '5000',
city: 'Odense C',
country_code: 'DK',
email: 'lene@email.dk',
phone: '12345678'
}
],
parcels: [
{
weight: 1000
}
]
});
const xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener('readystatechange', function () {
if (this.readyState === this.DONE) {
console.log(this.responseText);
}
});
xhr.open('POST', 'https://app.shipmondo.com/api/public/v3/shipments');
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.setRequestHeader('Accept', 'application/json');
xhr.setRequestHeader('Authorization', 'Basic 123');
xhr.send(data);For developers: A complete API solution
Got specific needs for your order and freight management? Build your very own solution with our RESTful API and get a customized setup that fits your needs. Connect Shipmondo to your system and customize booking etc. to your workflow.
Visit our Shipmondo.dev# Export the Agent Skill for Claude, Copilot, Cursor or Gemini
$ shipmondo setup export
# Create a shipment
$ shipmondo shipments create \
--data '{"product_code":"GLSDK_SD","reference":"Order 10001","parcels":[{"weight":1000}]}'
{
"id": 1168,
"carrier_code": "gls",
"pkg_no": "6064518784",
"price": "42.5"
}
# Download a label, or chain several actions together
$ shipmondo shipments labels 1168 --open-pdf
$ shipmondo shipments list --receiver-country DK \
| jq -r '.[].id' | xargs -n1 shipmondo shipments labelsShipmondo CLI
Bring Shipmondo into your existing workflows
With Shipmondo CLI, you can work with your shipments directly from the terminal or through AI agents like Claude, Copilot, Cursor and Gemini. Create shipments, retrieve data, download labels and chain multiple actions together - without clicking your way through the platform. That makes it easier to automate repetitive tasks and build Shipmondo into the workflows your team already uses.
Download CLIAutomate your flow with Shipmondo Print Client

Need any help?
If you have any questions or need any help, please don't hesitate to contact us.