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
| Parameter | Type | Required | Description |
|---|---|---|---|
ewayBillNumber | string | Yes | Exactly 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:
| Field | Type | Description |
|---|---|---|
ewbNo | number | 12 digit eway bill number. |
ewayBillDate | string | When the bill was generated. |
validUpto | string | Validity end of the bill. |
docNo | string | Invoice / document number. |
fromTrdName | string | Consignor trade name. |
toTrdName | string | Consignee trade name. |
itemList | array | Goods on the bill. |
VehiclListDetails | array | Part-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