The API

What you may call, how much is left, and what it costs.

This month ·

0 of 0 calls
Nothing turned away.
Requests a minute0
000

Try one

GET

Reads only, and with your own session — so what comes back is what this organization would get, not a sample.

JSON
// Send a call and what comes back appears here.

Endpoints

Reading the document…

Calling it

JavaScript
const response = await fetch('https://api.fullshipping.example/api/products?perPage=20', {
  headers: { Authorization: 'Bearer YOUR_KEY' },
});

// Every list answers with { items, total, page }.
const { items, total } = await response.json();

Client libraries

TypeScriptnpm i @fullshipping/sdk
PHPcomposer require fullshipping/sdk
Pythonpip install fullshipping
cURLNothing to install

The API is plain HTTP with a bearer token, so anything that can make a request can call it.

Your plan

Reading your plan…