POST
/
parcel
/
logistics
/
track-parcel
curl --request POST \
  --url https://api.mervii.com/beta/parcel/logistics/track-parcel \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "tracking_number": "202410086789949"
}'
{
  "data": {
    "complete_date": null,
    "created_at": "2024-10-08T21:09:31.000Z",
    "cube_ref": null,
    "destinations": [
      {
        "address": "Ikolaba Rd, Ibadan 200285, Oyo, Nigeria",
        "centre_code": "ibadan-sango",
        "city": "Lagos",
        "contacts": {
          "email": "abdul@gmail.com",
          "name": "Olakunle Olayemi",
          "phone_number": "09020500177",
          "phone_number_2": null
        },
        "country_code": "NG",
        "delivery_note": null,
        "dropoff_centre": {
          "centre_code": "ibadan-sango",
          "centre_name": "Sango Ibadan"
        },
        "item_weight": 1,
        "items": [
          {
            "height": null,
            "length": null,
            "name": "Book",
            "width": null
          }
        ],
        "price": {
          "amount": 3000.98,
          "amount_payable": 3000.98,
          "discount_amount": 0,
          "discount_description": "0% discount",
          "discount_type": "Percetage",
          "distance": " Kilometres to the drop off center ",
          "duration": "1-4 days"
        },
        "state_code": "LA",
        "weight": "1"
      }
    ],
    "discount_description": "0% discount",
    "discount_type": "Percetage",
    "payment_method": "Mervii",
    "payment_ref": null,
    "pickup_date": null,
    "pickup_origin": {
      "address": "Ikolaba Rd, Ibadan 200285, Oyo, Nigeria",
      "city": "Lagos",
      "contacts": {
        "email": "abdul@gmail.com",
        "name": "Olakunle Olayemi",
        "phone_number": "09020500177",
        "phone_number_2": null
      },
      "country_code": "NG",
      "pickup_centre": {
        "centre_code": "lagos-ojodu-berger",
        "centre_name": "Ojodu Berger Lagos"
      },
      "pickup_date": null,
      "pickup_note": null,
      "pickup_time": null,
      "region": {
        "latitude": 7.427026700000001,
        "longitude": 3.8900142
      },
      "state_code": "LA",
      "vehicle": null
    },
    "ref": null,
    "status": "Pending",
    "total_amount": 11192.94,
    "total_amount_payable": 11192.94,
    "total_discount_amount": 0,
    "tracking_number": "202410086789949",
    "updated_at": "2024-10-08T21:09:31.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:

"202410086789949"

Response

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

""

status
boolean
Example:

true

Was this page helpful?