> For the complete documentation index, see [llms.txt](https://ajaib.gitbook.io/ajaib-exchange-open-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ajaib.gitbook.io/ajaib-exchange-open-api/websocket-references/markdown/execution-report.md).

# Execution Report

**Functionality:** To get execution report data.

**Authentication:** Required

**Update Time:** Real-time

Response

| Name | Type    | Description                                                                                                                                                          |
| ---- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| e    | string  | Websocket event type                                                                                                                                                 |
| E    | long    | Event time                                                                                                                                                           |
| s    | string  | Symbol                                                                                                                                                               |
| c    | string  | Order identifier from client side                                                                                                                                    |
| S    | string  | Side of order book. Refer to [this](https://ajaib.gitbook.io/coin-exchange-open-api/getting-started/quickstart#:~:text=will%20be%20expired\).-,Order%20Sides,-Enum). |
| o    | string  | Order type                                                                                                                                                           |
| f    | string  | Time in force mode. Refer to [this](https://ajaib.gitbook.io/coin-exchange-open-api/getting-started/quickstart#:~:text=Asset%20Symbols%20/%20Trading%20Pairs).       |
| q    | string  | Order quantity                                                                                                                                                       |
| p    | string  | Order price                                                                                                                                                          |
| C    | string  | Order identifier from client side                                                                                                                                    |
| X    | string  | Status of order. Refer to [this](https://ajaib.gitbook.io/coin-exchange-open-api/getting-started/quickstart#:~:text=Order%20Status%20%26%20Lifecycle).               |
| r    | string  | Order reject reason; will be an error code.                                                                                                                          |
| i    | string  | Unique identifier generated by Ajaib exchange for all orders submitted successfully                                                                                  |
| l    | string  | Last executed quantity                                                                                                                                               |
| z    | string  | Cumulative filled quantity                                                                                                                                           |
| L    | string  | Last executed price                                                                                                                                                  |
| T    | long    | Transaction time                                                                                                                                                     |
| t    | string  | Trade ID                                                                                                                                                             |
| v    | string  | Prevented Match Id; This is only visible if the order expired due to STP                                                                                             |
| m    | boolean | Is this trade the maker side?                                                                                                                                        |
| O    | long    | Order creation time                                                                                                                                                  |
| Z    | string  | Cumulative quote asset transacted quantity                                                                                                                           |
| Y    | string  | Last quote asset transacted quantity (i.e. lastPrice \* lastQty)                                                                                                     |
| Q    | string  | Quote Order Quantity                                                                                                                                                 |
| V    | string  | SelfTradePreventionMode                                                                                                                                              |

Response Sample

{% tabs %}
{% tab title="Success" %}

```javascript
{
  "e": "executionReport",
  "E": 1499405658658,
  "s": "XRP_IDR",
  "c": "f66b4db6-fb03-4d89-baf6-666cc845df52",
  "S": "SELL",
  "o": "LIMIT",
  "f": "GTC",
  "q": "3288.6",
  "p": "41773.1",
  "C": "f66b4db6-fb03-4d89-baf6-666cc845df52",
  "X": "NEW",
  "r": "NONE",
  "i": "d66b4db6-fb03-4d89-baf6-666cc845df52",
  "l": "3288.6",
  "z": "0.1",
  "L": "41773.1",
  "T": 1740331631767,
  "t": "aa6b4db6-fb03-4d89-baf6-666cc845df52",
  "v": "a66b4db6-fb03-4d89-baf6-666cc845df52",
  "m": false,
  "O": 1499405658657,
  "Z": "0.1",
  "Y": "137375016.66",
  "Q": "3288.6",
  "V": "NONE"
}
```

{% endtab %}
{% endtabs %}
