MarketPe APIs
Eway

Eway Get

eway/get

POST /eway/get

Fetch the full details of a single eway bill by its 12 digit number.

Request Body

{
  "ewayBillNumber": "123456789012"
}

Request Parameters

ParameterTypeRequiredDescription
ewayBillNumberstringYesExactly 12 digits.

Response

status: "success"

data is the eway bill exactly as returned by the government eway system. The full field list is in the official eway bill API docs.

{
  "status": "success",
  "data": {
    "ewbNo": 123456789012,
    "ewayBillDate": "12/11/2025 10:00:00 AM",
    "validUpto": "14/11/2025 11:59:00 PM",
    "docNo": "INV-001",
    "fromTrdName": "Sender Traders",
    "toTrdName": "Receiver Traders",
    "itemList": [...],
    "VehiclListDetails": [...]
    ...
  }
}

Commonly used fields:

FieldTypeDescription
ewbNonumber12 digit eway bill number.
ewayBillDatestringWhen the bill was generated.
validUptostringValidity end of the bill.
docNostringInvoice / document number.
fromTrdNamestringConsignor trade name.
toTrdNamestringConsignee trade name.
itemListarrayGoods on the bill.
VehiclListDetailsarrayPart-B entries, holds the vehicle and LR details.

status: "error"

{
  "status": "error",
  "message": "Eway not found"
}

Eway not found means the bill is not available with marketpe for your organization.

Last updated on