> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://partner.ninjatrader.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://partner.ninjatrader.com/_mcp/server.

# Execution Report Item

GET https://live.tradovateapi.com/v1/executionReport/item

Fetches ExecutionReport entity by `id` field

Reference: https://partner.ninjatrader.com/eval/api/rest-api-endpoints/orders/execution-report-item

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: eval
  version: 1.0.0
paths:
  /executionReport/item:
    get:
      operationId: execution-report-item
      summary: Execution Report Item
      description: Fetches ExecutionReport entity by `id` field
      tags:
        - subpackage_orders
      parameters:
        - name: id
          in: query
          required: true
          schema:
            type: integer
            format: int64
        - name: Authorization
          in: header
          description: Bearer authentication
          required: true
          schema:
            type: string
      responses:
        '200':
          description: ExecutionReport
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExecutionReport'
servers:
  - url: https://live.tradovateapi.com/v1
    description: https://live.tradovateapi.com/v1
components:
  schemas:
    TradeDate:
      type: object
      properties:
        year:
          type: integer
        month:
          type: integer
        day:
          type: integer
      required:
        - year
        - month
        - day
      title: TradeDate
    ExecutionReportExecType:
      type: string
      enum:
        - Canceled
        - Completed
        - DoneForDay
        - Expired
        - New
        - OrderStatus
        - PendingCancel
        - PendingNew
        - PendingReplace
        - Rejected
        - Replaced
        - Stopped
        - Suspended
        - Trade
        - TradeCancel
        - TradeCorrect
      description: >-
        Canceled, Completed, DoneForDay, Expired, New, OrderStatus,
        PendingCancel, PendingNew, PendingReplace, Rejected, Replaced, Stopped,
        Suspended, Trade, TradeCancel, TradeCorrect
      title: ExecutionReportExecType
    ExecutionReportOrdStatus:
      type: string
      enum:
        - Canceled
        - Completed
        - Expired
        - Filled
        - PendingCancel
        - PendingNew
        - PendingReplace
        - Rejected
        - Suspended
        - Unknown
        - Working
      description: >-
        Canceled, Completed, Expired, Filled, PendingCancel, PendingNew,
        PendingReplace, Rejected, Suspended, Unknown, Working
      title: ExecutionReportOrdStatus
    ExecutionReportAction:
      type: string
      enum:
        - Buy
        - Sell
      description: Buy, Sell
      title: ExecutionReportAction
    ExecutionReportRejectReason:
      type: string
      enum:
        - AccountClosed
        - AdvancedTrailingStopUnsupported
        - AnotherCommandPending
        - BackMonthProhibited
        - ExecutionProviderNotConfigured
        - ExecutionProviderUnavailable
        - InvalidContract
        - InvalidPrice
        - KeyInformationDocumentRequired
        - LiquidationOnly
        - LiquidationOnlyBeforeExpiration
        - MaxOrderQtyIsNotSpecified
        - MaxOrderQtyLimitReached
        - MaxPosLimitMisconfigured
        - MaxPosLimitReached
        - MaxTotalPosLimitReached
        - MultipleAccountPlanRequired
        - NoQuote
        - NotEnoughLiquidity
        - OtherExecutionRelated
        - ParentRejected
        - RiskCheckTimeout
        - SSFNFAComplianceRequired
        - SSFNFAComplianceRequiredJointOnly
        - SSFRiskDisclosureAcknowledgmentRequired
        - SessionClosed
        - Success
        - TooLate
        - TradingLocked
        - TrailingStopNonOrderQtyModify
        - Unauthorized
        - UnknownReason
        - Unsupported
      description: >-
        AccountClosed, AdvancedTrailingStopUnsupported, AnotherCommandPending,
        BackMonthProhibited, ExecutionProviderNotConfigured,
        ExecutionProviderUnavailable, InvalidContract, InvalidPrice,
        KeyInformationDocumentRequired, LiquidationOnly,
        LiquidationOnlyBeforeExpiration, MaxOrderQtyIsNotSpecified,
        MaxOrderQtyLimitReached, MaxPosLimitMisconfigured, MaxPosLimitReached,
        MaxTotalPosLimitReached, MultipleAccountPlanRequired, NoQuote,
        NotEnoughLiquidity, OtherExecutionRelated, ParentRejected,
        RiskCheckTimeout, SSFNFAComplianceRequired,
        SSFNFAComplianceRequiredJointOnly,
        SSFRiskDisclosureAcknowledgmentRequired, SessionClosed, Success,
        TooLate, TradingLocked, TrailingStopNonOrderQtyModify, Unauthorized,
        UnknownReason, Unsupported
      title: ExecutionReportRejectReason
    ExecutionReport:
      type: object
      properties:
        id:
          type: integer
          format: int64
        commandId:
          type: integer
          format: int64
        name:
          type: string
        accountId:
          type: integer
          format: int64
        contractId:
          type: integer
          format: int64
        timestamp:
          type: string
          format: date-time
        tradeDate:
          $ref: '#/components/schemas/TradeDate'
        orderId:
          type: integer
          format: int64
        execType:
          $ref: '#/components/schemas/ExecutionReportExecType'
          description: >-
            Canceled, Completed, DoneForDay, Expired, New, OrderStatus,
            PendingCancel, PendingNew, PendingReplace, Rejected, Replaced,
            Stopped, Suspended, Trade, TradeCancel, TradeCorrect
        execRefId:
          type: string
        ordStatus:
          $ref: '#/components/schemas/ExecutionReportOrdStatus'
          description: >-
            Canceled, Completed, Expired, Filled, PendingCancel, PendingNew,
            PendingReplace, Rejected, Suspended, Unknown, Working
        action:
          $ref: '#/components/schemas/ExecutionReportAction'
          description: Buy, Sell
        cumQty:
          type: integer
        avgPx:
          type: number
          format: double
        lastQty:
          type: integer
        lastPx:
          type: number
          format: double
        rejectReason:
          $ref: '#/components/schemas/ExecutionReportRejectReason'
          description: >-
            AccountClosed, AdvancedTrailingStopUnsupported,
            AnotherCommandPending, BackMonthProhibited,
            ExecutionProviderNotConfigured, ExecutionProviderUnavailable,
            InvalidContract, InvalidPrice, KeyInformationDocumentRequired,
            LiquidationOnly, LiquidationOnlyBeforeExpiration,
            MaxOrderQtyIsNotSpecified, MaxOrderQtyLimitReached,
            MaxPosLimitMisconfigured, MaxPosLimitReached,
            MaxTotalPosLimitReached, MultipleAccountPlanRequired, NoQuote,
            NotEnoughLiquidity, OtherExecutionRelated, ParentRejected,
            RiskCheckTimeout, SSFNFAComplianceRequired,
            SSFNFAComplianceRequiredJointOnly,
            SSFRiskDisclosureAcknowledgmentRequired, SessionClosed, Success,
            TooLate, TradingLocked, TrailingStopNonOrderQtyModify, Unauthorized,
            UnknownReason, Unsupported
        text:
          type: string
        exchangeOrderId:
          type: string
      required:
        - commandId
        - name
        - accountId
        - contractId
        - timestamp
        - orderId
        - execType
        - action
      title: ExecutionReport
  securitySchemes:
    bearer_access_token:
      type: http
      scheme: bearer

```

## Examples



**Response**

```json
{
  "commandId": 1,
  "name": "string",
  "accountId": 1,
  "contractId": 1,
  "timestamp": "2024-01-15T09:30:00Z",
  "orderId": 1,
  "execType": "Canceled",
  "action": "Buy",
  "id": 1,
  "tradeDate": {
    "year": 1,
    "month": 1,
    "day": 1
  },
  "execRefId": "string",
  "ordStatus": "Canceled",
  "cumQty": 1,
  "avgPx": 1.1,
  "lastQty": 1,
  "lastPx": 1.1,
  "rejectReason": "AccountClosed",
  "text": "string",
  "exchangeOrderId": "string"
}
```

**SDK Code**

```python
import requests

url = "https://live.tradovateapi.com/v1/executionReport/item"

querystring = {"id":"1"}

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers, params=querystring)

print(response.json())
```

```javascript
const url = 'https://live.tradovateapi.com/v1/executionReport/item?id=1';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://live.tradovateapi.com/v1/executionReport/item?id=1"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "Bearer <token>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://live.tradovateapi.com/v1/executionReport/item?id=1")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://live.tradovateapi.com/v1/executionReport/item?id=1")
  .header("Authorization", "Bearer <token>")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://live.tradovateapi.com/v1/executionReport/item?id=1', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://live.tradovateapi.com/v1/executionReport/item?id=1");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = ["Authorization": "Bearer <token>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://live.tradovateapi.com/v1/executionReport/item?id=1")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```