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.

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.

Warehouse management systems (WMS)

Achieve a fast and automated workflow. Book shipping labels easily for your orders from your WMS system and minimize time spent per order.

// 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 labels

Shipmondo 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 CLI

Automate your flow with Shipmondo Print Client

Send shipping labels directly to your printer through the API, or from our web portal. You can add an unlimited number of printers.

Get started with the Print Client
Automatic print

Need any help?

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