Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
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>' } });