Quickstart

Get started with WhereParcel API in 5 minutes

Quickstart

Get started with WhereParcel API in just a few minutes.

1. Get Your API Keys

Sign up for a free account and get your API keys from the Dashboard.

2. Make Your First Request

curl -X POST https://api.whereparcel.com/v2/track \
  -H "Authorization: Bearer YOUR_API_KEY:YOUR_SECRET_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "trackingItems": [
      {
        "carrier": "us.usps",
        "trackingNumber": "9400111899562537866361"
      }
    ]
  }'

3. Parse the Response

{
  "success": true,
  "data": {
    "carrier": "us.usps",
    "trackingNumber": "9400111899562537866361",
    "status": "delivered",
    "events": [
      {
        "status": "delivered",
        "description": "Delivered",
        "location": "NEW YORK, NY 10001",
        "timestamp": "2024-01-15T14:30:00Z"
      }
    ]
  }
}

Next Steps