GET Account

Retrieve information and stats about a specific account, along with all account item information.

Get a specific account by name

GET /v1/api/accounts/{account}

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

Name
Type
Required
Description

account

string

Required

Name of account in NT8

Code Examples

import requests

token = 'my-secret-token'

url = "https://app.crosstrade.io/v1/api/accounts/Sim101"
headers = {
    "Authorization": f"Bearer {token}",
    "Content-Type": "application/json"
}

try:
    response = requests.get(url, headers=headers)
    print(f"Response Code: {response.status_code}, Response Text: {response.text}")
except Exception as e:
    print(f"An error occurred: {e}")

Response

{
    "id": 2,
    "name": "Sim101",
    "displayName": "Sim101",
    "primaryUser": null,
    "provider": "Simulator",
    "denomination": "UsDollar",
    "status": "Enabled",
    "dailyLossLimit": 0.0,
    "minCashValue": 0.0,
    "maxOrderSize": 0,
    "maxPositionSize": 0,
    "connection": "NinjaTrader.Cbi.Connection",
    "connectionStatus": "Connected",
    "lastTransactionSum": 0.0,
    "item": {
        "buyingPower": 0.0,
        "cashValue": 100565.00000000285,
        "commission": 0.0,
        "dailyLossLimit": 0.0,
        "dailyProfitTrigger": 0.0,
        "excessInitialMargin": 103502.50000000285,
        "excessIntradayMargin": 103502.50000000285,
        "excessMaintenanceMargin": 100000.0,
        "excessPositionMargin": 100000.0,
        "fee": 0.0,
        "grossRealizedProfitLoss": 0.0,
        "initialMargin": 0.0,
        "intradayMargin": 0.0,
        "longOptionValue": 0.0,
        "longStockValue": 0.0,
        "lookAheadMaintenanceMargin": 0.0,
        "maintenanceMargin": 0.0,
        "netLiquidation": 103502.50000000285,
        "netLiquidationByCurrency": 0.0,
        "positionMargin": 0.0,
        "realizedProfitLoss": 0.0,
        "shortOptionValue": 0.0,
        "shortStockValue": 0.0,
        "sodCashValue": 0.0,
        "sodLiquidatingValue": 0.0,
        "totalCashBalance": 0.0,
        "trailingMaxDrawdown": 0.0,
        "unrealizedProfitLoss": 2937.5,
        "weeklyLossLimit": 0.0,
        "weeklyProfitLoss": 0.0,
        "weeklyProfitTrigger": 0.0
    },
    "success": true
}

Last updated