Trading 212 · Schema
AccountBucketResultResponse
Trading 212 AccountBucketResultResponse schema
InvestingFinanceTradingStocksPortfolioCommission-FreeISA
Properties
| Name | Type | Description |
|---|---|---|
| cash | number | Amount of money put into the pie in account currency |
| dividendDetails | object | |
| id | integer | |
| progress | number | Progress of the pie based on the set goal |
| result | object | |
| status | string | Status of the pie based on the set goal |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/trading212/refs/heads/main/json-schema/AccountBucketResultResponse.json",
"title": "AccountBucketResultResponse",
"description": "Trading 212 AccountBucketResultResponse schema",
"properties": {
"cash": {
"description": "Amount of money put into the pie in account currency",
"type": "number"
},
"dividendDetails": {
"$ref": "https://raw.githubusercontent.com/api-evangelist/trading212/refs/heads/main/json-schema/DividendDetails"
},
"id": {
"format": "int64",
"type": "integer"
},
"progress": {
"description": "Progress of the pie based on the set goal",
"example": 0.5,
"type": "number"
},
"result": {
"$ref": "https://raw.githubusercontent.com/api-evangelist/trading212/refs/heads/main/json-schema/InvestmentResult"
},
"status": {
"description": "Status of the pie based on the set goal",
"enum": [
"AHEAD",
"ON_TRACK",
"BEHIND"
],
"type": "string"
}
},
"type": "object"
}