LBank · Schema
LBank Order
Schema for LBank spot trading order records
CryptocurrencyExchangeTradingMarket DataFinanceBlockchain
Properties
| Name | Type | Description |
|---|---|---|
| symbol | string | Trading pair symbol |
| order_id | string | Unique order identifier (UUID format) |
| amount | number | Order quantity in base currency |
| price | number | Order price in quote currency |
| avg_price | number | Average fill price |
| type | string | Order direction |
| deal_amount | number | Quantity already filled |
| create_time | integer | Order creation timestamp in milliseconds |
| status | integer | Order status code |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api.lbkex.com/schemas/order",
"title": "LBank Order",
"description": "Schema for LBank spot trading order records",
"type": "object",
"required": ["symbol", "order_id", "amount", "price", "type", "status", "create_time"],
"properties": {
"symbol": {
"type": "string",
"description": "Trading pair symbol",
"pattern": "^[a-z0-9]+_[a-z0-9]+$",
"examples": ["eth_btc"]
},
"order_id": {
"type": "string",
"description": "Unique order identifier (UUID format)",
"examples": ["24f7ce27-af1d-4dca-a8c1-ef1cbeec1b23"]
},
"amount": {
"type": "number",
"description": "Order quantity in base currency",
"minimum": 0,
"examples": [10.0]
},
"price": {
"type": "number",
"description": "Order price in quote currency",
"minimum": 0,
"examples": [5000.0]
},
"avg_price": {
"type": "number",
"description": "Average fill price",
"minimum": 0,
"examples": [4998.5]
},
"type": {
"type": "string",
"enum": ["buy", "sell"],
"description": "Order direction"
},
"deal_amount": {
"type": "number",
"description": "Quantity already filled",
"minimum": 0,
"examples": [5.0]
},
"create_time": {
"type": "integer",
"description": "Order creation timestamp in milliseconds",
"examples": [1484289832081]
},
"status": {
"type": "integer",
"description": "Order status code",
"enum": [-1, 0, 1, 2, 3, 4],
"examples": [0]
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/lbank-order"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.