# (Deprecated) Getting Consolidated E-Waybill

{% hint style="danger" %}
This API is deprecated. Please use the [E-Waybill APIs from the unified set available here](https://docs.cleartax.in/cleartax-docs/e-invoicing-api/introduction-to-e-invoicing-api).
{% endhint %}

## Get all Consolidated E-Waybill

You can get all Consolidated E-Waybills generated by submitting a **GET** request to  the E-Waybill API with the following request headers.

#### URL query string:

```
{{HOST}}/v0.1/taxable_entities/{{TAXABLE_ENTITY_ID}}/consolidated_ewb
```

#### Request Parameters:

| Parameters            | Parameter Type | Type   | Description                                                                |
| --------------------- | -------------- | ------ | -------------------------------------------------------------------------- |
| X-Cleartax-Auth-Token | Header         | String | Mandatory. The auth token generated from ClearTax user id and password.    |
| taxable\_entity\_id   | Path           | String | Required. This is the unique ID associated with the GSTIN in your account. |
| cewb\_number          | Query          | String | Consolidated E-waybill number                                              |
| cewb\_start\_date     | Query          | String | Consolidated E-waybill start date                                          |
| cewb\_end\_date       | Query          | String | Consolidated E-waybill end date                                            |
| from\_place           | Query          | String | From place                                                                 |

#### Sample Request:

```
https://ewbbackend-preprodpub-http.internal.cleartax.co/gst/v0.1/taxable_entities/269ea15f-5e27-4203-bb11-3bb911fc5724/consolidated_ewb
```

#### Sample Response:

{% code title="200" %}

```javascript
[
    {
        "id": "1110003484",
        "cewb_number": "1110003484", // Consolidated EWB Number
        "cewb_date": "26-09-2018 13:06:00",
        "from_place": "Karnataka",
        "from_state": "ASSAM",
        "vehicle_number": "KA19ED2843",
        "transport_mode": "ROAD",
        "transport_doc_number": null,
        "transport_doc_date": "26-09-2018 00:00:00",
        "number_of_ewbs": 5,
        "status": "ACTIVE",
        "regenerate_reason": null,
        "regenerate_remarks": null
    }
]
```

{% endcode %}
