Track multiple labels by tracking codes
POST/track/bulk
Track multiple shipping labels by providing an array of tracking codes (max 100).
Headers
AuthorizationRequired
Bearer authentication of the form Bearer <token>, where token is your auth token
Request
Bulk tracking request
tracking_codesarrayRequired
Array of tracking codes to look up (max 100)
Example Request
curl -X POST https://api.parsel.app/track/bulk
-H "Authorization: Bearer <bearer_token>"
-H "Content-Type: application/json"
-d '{
"tracking_codes": [
"1Z999AA10123456784",
"1Z999AA10987654321",
"1Z999AA10111111111"
]
}'