# Get balances Use this endpoint to: - View real-time balances - Track multi-currency holdings - Monitor available trading funds - Reconcile account positions Endpoint: GET /v1/brokerage/{orgId}/balances Version: v1.0.0 Security: bearerAuth ## Path parameters: - `orgId` (string, required) ## Response 200 fields (application/json): - `status` (string) Enum: "success", "error" - `data` (array,null) - `data.id` (string) Unique identifier for the currency balance record Example: "a9504caf-6888-409c-b841-da5127334070" - `data.amount` (number) Available balance amount in the specified currency Example: 5264 - `data.currency` (string) Currency symbol of this balance object Example: "USD" - `data.createdAt` (string) UTC Timestamp when the balance record was created Example: "2024-02-03T08:04:12.045Z" - `data.updatedAt` (string) UTC Timestamp when the balance record was last updated Example: "2024-02-03T08:04:12.045Z" - `message` (string) Example: "Data fetched successfully" ## Response 400 fields (application/json): - `status` (string) Example: "error" - `message` (string) Example: "Data fetched successfully" ## Response 401 fields (application/json): - `status` (string) Example: "error" - `message` (string) Example: "Data fetched successfully" ## Response 500 fields (application/json): - `status` (string) Example: "error" - `message` (string) Example: "Data fetched successfully"