Data Models
Understand the schema for Customers, Orders, and Locations.
API Reference
Explore all available endpoints and their parameters
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request GET \
--url https://api.parceltracer.com/v1/external/{endpoint} \
--header 'X-Api-Key: <api-key>'
import requests
url = "https://api.parceltracer.com/v1/external/{endpoint}"
headers = {
"X-Api-Key": "<api-key>"
}
response = requests.get(url, headers=headers)
const response = await fetch('https://api.parceltracer.com/v1/external/{endpoint}', {
method: 'GET',
headers: {
'X-Api-Key': '<api-key>'
}
});
