StoneX · Schema

StoneX Clearing Account

An institutional clearing account managed through the StoneX Clearing API.

FinanceFinancial ServicesPaymentsClearingFuturesTradingRisk Management

Properties

Name Type Description
id string Account identifier.
name string Account name.
account_type string Account type classification.
status string
currency string Base currency (ISO 4217).
created_at string
View JSON Schema on GitHub

JSON Schema

stonex-clearing-account-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.clearing.stonex.com/schema/account",
  "title": "StoneX Clearing Account",
  "description": "An institutional clearing account managed through the StoneX Clearing API.",
  "type": "object",
  "properties": {
    "id": { "type": "string", "description": "Account identifier." },
    "name": { "type": "string", "description": "Account name." },
    "account_type": { "type": "string", "description": "Account type classification." },
    "status": { "type": "string", "enum": ["active", "inactive", "suspended"] },
    "currency": { "type": "string", "description": "Base currency (ISO 4217)." },
    "created_at": { "type": "string", "format": "date-time" }
  },
  "required": ["id", "name", "status"]
}