{ "opencollection": "1.0.0", "info": { "name": "TrackingMore Air Waybills Trackings API", "version": "v4" }, "request": { "auth": { "type": "apikey", "key": "Tracking-Api-Key", "value": "{{Tracking-Api-Key}}", "placement": "header" } }, "items": [ { "info": { "name": "Trackings", "type": "folder" }, "items": [ { "info": { "name": "Create a tracking", "type": "http" }, "http": { "method": "POST", "url": "https://api.trackingmore.com/v4/trackings/create", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new shipment tracking. Requires a tracking number and courier code. Each unique tracking_number + courier_code pair consumes 1 credit." }, { "info": { "name": "Batch create trackings", "type": "http" }, "http": { "method": "POST", "url": "https://api.trackingmore.com/v4/trackings/batch", "body": { "type": "json", "data": "{}" } }, "docs": "Create up to 40 shipment trackings in a single API call. Each item requires a tracking_number and courier_code." }, { "info": { "name": "Get tracking results", "type": "http" }, "http": { "method": "GET", "url": "https://api.trackingmore.com/v4/trackings/get", "params": [ { "name": "tracking_number", "value": "", "type": "query", "description": "Tracking number to filter by" }, { "name": "courier_code", "value": "", "type": "query", "description": "Carrier/courier code to filter by" }, { "name": "status", "value": "", "type": "query", "description": "Shipment status to filter by (e.g., pending, transit, delivered, exception)" }, { "name": "created_at_min", "value": "", "type": "query", "description": "Filter by minimum creation date (Unix timestamp or ISO 8601)" }, { "name": "created_at_max", "value": "", "type": "query", "description": "Filter by maximum creation date (Unix timestamp or ISO 8601)" }, { "name": "updated_at_min", "value": "", "type": "query", "description": "Filter by minimum last updated date (Unix timestamp or ISO 8601)" }, { "name": "updated_at_max", "value": "", "type": "query", "description": "Filter by maximum last updated date (Unix timestamp or ISO 8601)" }, { "name": "page", "value": "", "type": "query", "description": "Page number for pagination (default 1)" }, { "name": "limit", "value": "", "type": "query", "description": "Number of results per page (default 40, max 100)" }, { "name": "lang", "value": "", "type": "query", "description": "Language code for translated tracking messages" } ] }, "docs": "Retrieve tracking results for one or more shipments. Supports filtering by courier code, tracking status, date range, and other parameters." }, { "info": { "name": "Update a tracking", "type": "http" }, "http": { "method": "PUT", "url": "https://api.trackingmore.com/v4/trackings/update/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Unique tracking identifier" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update metadata or custom fields for an existing tracking identified by its unique ID." }, { "info": { "name": "Delete a tracking", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.trackingmore.com/v4/trackings/delete/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Unique tracking identifier" } ] }, "docs": "Permanently delete a shipment tracking by its unique ID." }, { "info": { "name": "Retrack a tracking", "type": "http" }, "http": { "method": "POST", "url": "https://api.trackingmore.com/v4/trackings/retrack/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Unique tracking identifier" } ] }, "docs": "Request a fresh tracking update for a shipment that has stopped updating. Useful for expired or stale trackings." } ] } ], "bundled": true }