Skip to main content

Node.js

Official Node.js and TypeScript SDK for the Ship24 Tracking API. Use it instead of calling the API directly.

You still need a Ship24 API key; see Getting started.

Install​

npm install ship24

Quickstart​

import { Ship24 } from 'ship24';

const ship24 = new Ship24({ apiKey: process.env.SHIP24_API_KEY });
const tracker = await ship24.trackers.create({ trackingNumber: '1234567890' });

The source and examples are on GitHub. Install it from npm.