POST
/
parcel
/
intral
/
track-parcel
curl --request POST \
  --url https://api.mervii.com/beta/parcel/intral/track-parcel \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "tracking_number": "202410082201832"
}'
{
  "data": {
    "created_at": "2024-10-08T20:31:51.000Z",
    "destinations": [
      {
        "city": "Ojodu Berger",
        "contacts": {
          "email": "abdul@gmail.com",
          "name": "Olakunle Olayemi",
          "phone_number": "09020500177",
          "phone_number_2": "09020500177"
        },
        "country": "Nigeria",
        "country_code": "NG",
        "formattedAddress": "Olowora, Ojodu Berger 105102, Lagos, Nigeria",
        "lat": 6.6395189,
        "lng": 3.3710171,
        "local": "Kosofe",
        "neighborhood": "Olowora",
        "postal_code": "105102",
        "price": {
          "amount": 1427,
          "amount_payable": 1427,
          "discount_amount": 0,
          "discount_description": "0% discount",
          "discount_type": "percentage",
          "distance": "7.1 km",
          "duration": "17 mins"
        },
        "region": {
          "latitude": 6.6395189,
          "longitude": 3.3710171
        },
        "state": "Lagos",
        "state_code": "LA",
        "ward": "Isheri-Olowo-Ira/Shangisha/Magodo Phase I & II"
      }
    ],
    "discount_description": "See the destination parcel details",
    "discount_type": "percentage",
    "pickup_origin": {
      "city": "Ikeja",
      "contacts": {
        "email": "abdul@gmail.com",
        "name": "Olakunle Olayemi",
        "phone_number": "09020500177",
        "phone_number_2": "09020500177"
      },
      "country_code": "NG",
      "region": {
        "latitude": 6.594019599999999,
        "longitude": 3.336365099999999
      },
      "state_code": "LA"
    },
    "ref": null,
    "status": "Pending",
    "total_amount": "1427.00",
    "total_amount_payable": "1427.00",
    "total_discount_amount": "0.00",
    "tracking_number": "202410082201832",
    "updated_at": "2024-10-08T20:31:51.000Z"
  },
  "message": "",
  "status": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
tracking_number
string
Example:

"202410082201832"

Response

200 - application/json
success
data
object
message
string
Example:

""

status
boolean
Example:

true

Was this page helpful?