This repository has been archived but the karrio docs have been moved to a monorepo https://github.com/karrioapi/karrio
Karrio is a universal Shipping API that simplifies the integration of logistic carrier services.
Visit karrio.io to deploy your private cloud multi-carrier shipping API.
See the full Node API docs.
npm i karrio
# or
yarn add karrio
The package needs to be configured with your account's API key, which is available in the Karrio Dashboard.
const karrio = require('karrio')('key_...', 'https://api.karrio.io');
karrio.carriers.list()
.then(carriers => console.log(carriers))
.catch(error => console.error(error));
Or using ES modules and async
/await
:
import Karrio from 'karrio';
const karrio = Karrio('key_...', 'https://api.karrio.io');
(async () => {
const carriers = await karrio.carriers.list();
console.log(carriers);
})();
Team Karrio | hello@karrio.io | karrio.io