Skip to main content
GET
/
orders
/
{reference}
Get Order
curl --request GET \
  --url https://api.mtn.express.ci/client/orders/{reference} \
  --header 'Authorization: Bearer <token>'
{
  "referenceNumber": "ORD0001",
  "total": 98150,
  "deliveryFee": 1500,
  "status": "pending",
  "createdAt": "2025-06-05T07:05:21.000Z",
  "updatedAt": "2025-06-05T07:05:21.000Z",
  "recipient": {
    "phone": "+2250702029254",
    "address": {
      "name": "45 Avenue de la Paix",
      "city": "Cocody",
      "landmark": "Terminus 81/82",
      "latitude": 5.403871,
      "longitude": -3.9881079
    },
    "name": "John Doe"
  },
  "items": [
    {
      "referenceNumber": "ITEM001",
      "orderId": 14,
      "itemName": "Samsung Galaxy A05 64Go",
      "quantity": 1,
      "total": 77900,
      "status": "pending",
      "createdAt": "2025-06-05T07:05:21.000Z",
      "updatedAt": "2025-06-05T07:05:21.000Z",
      "sender": {
        "phone": "+2250700000001",
        "address": {
          "name": "45 Avenue de la Paix",
          "city": "Cocody",
          "landmark": "Terminus 81/82",
          "latitude": 5.403871,
          "longitude": -3.9881079
        },
        "referenceNumber": "0596086680",
        "name": "Samsung Store Abidjan"
      },
      "size": "S",
      "weight": 0.5,
      "itemUrl": "https://market.momo.africa/Portal/product/121731/1?tenantId=4&lang=fr",
      "statusComment": null
    }
  ],
  "deliveryInstructions": "Livrer à midi",
  "deliveryDeadline": "2025-06-05",
  "statusComment": null
}

Authorizations

Authorization
string
header
required

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

Path Parameters

reference
string
required

Unique order reference in your system.

Response

200 - application/json

Delivery order details

Represents the response payload for an order after it has been created, retrieved, or canceled.

referenceNumber
string
required

Unique order reference in your system.

Example:

"ORD0001"

total
number<float>
required

Total amount of the order including delivery fees.

Example:

98150

deliveryFee
number<float>
required

Fee for delivering the order.

Example:

1500

status
string
required

Current status of the order.

Example:

"pending"

createdAt
string<date-time>
required

Timestamp when the order was created.

Example:

"2025-06-05T07:05:21.000Z"

updatedAt
string<date-time>
required

Timestamp when the order was last updated.

Example:

"2025-06-05T07:05:21.000Z"

recipient
object
required

Details of the recipient receiving the order.

items
object[]
required

List of items included in the order.

deliveryInstructions
string | null

Special instructions for the delivery process.

Example:

"Livrer à midi"

deliveryDeadline
string<date-time> | null

The latest date by which the delivery should be completed.

Example:

"2025-06-05"

statusComment
string | null

Optional comments related to the order status.

Example:

null