MarketPe APIs
Eway

Eway List

eway/list

POST /eway/list

Lists the eway bills stored against your organization, filtered by the time they were added to marketpe.

Request

{
  "createdTimeFrom": "2025-11-12T10:00:00+05:30",
  "createdTimeTo": "2025-11-13T10:00:00+05:30"
}

"2025-11-12T10:00:00+05:30" represents 10AM india time.
You can also pass ISO format like "2025-11-12T10:00:00.000Z" but you need to adjust time as this represents 3.30PM india time.

Request Parameters

ParameterTypeRequiredDescription
createdTimeFromstringYesStart of the added-to-marketpe time range (inclusive).
createdTimeTostringYesEnd of the added-to-marketpe time range (inclusive).

The window between createdTimeFrom and createdTimeTo cannot exceed 30 days.

Response

{
  "status": "success",
  "data": [
    {
      "ewayBillNumber": "123456789012",
      "ewayBillDate": "2025-11-12T10:00:00.000Z",
      "vehicleNumber": "TS09AB1234",
      "validUpto": "2025-11-14T18:29:59.000Z",
      "fromPlace": "Hyderabad",
      "toPlace": "Bengaluru",
      "gstin": "36AAAAA0000A1Z5"
    }
  ]
}

Response Fields

FieldTypeDescription
ewayBillNumberstring12 digit eway bill number.
ewayBillDatestringDate the eway bill was generated.
vehicleNumberstring | nullVehicle on the latest part-B entry.
validUptostring | nullValidity end of the eway bill.
fromPlacestringDispatch place. Empty string when not available.
toPlacestringDelivery place. Empty string when not available.
gstinstringGSTIN under which the bill was fetched.

Last updated on