Exchange Service

The trading core: market and matcher state, instrument catalogue, v1 and v2 order creation (limit, market, stop-limit, batch mass-limit), order replacement and cancellation, positions and leverage, TP/SL, transfers, withdrawals and cashback. Every value-moving write requires an EIP-712 wallet signature. 125 operations.

Work with this as data

Every API 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 apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • 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.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/exchange-service"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

evedex-exchange-openapi.json Raw ↑
{"openapi":"3.1.0","servers":[{"url":"https://exchange-api.evedex.com"}],"info":{"title":"EVEDEX - Exchange","version":"1.0.0"},"paths":{"/api/ping":{"get":{"tags":["System"],"security":[],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/PingResponse"}}}}}}},"/api/v2/position/{instrument}/close":{"post":{"tags":["Position"],"security":[{"AccessToken":[]}],"parameters":[{"in":"path","name":"instrument","schema":{"type":"string"},"required":true}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"quantity":{"anyOf":[{"type":"string"},{"type":"number"}]},"leverage":{"type":"integer"},"signature":{"type":"string"},"chainId":{"type":"string"},"smp":{"type":"object","properties":{"smp":{"type":"boolean"},"smpId":{"type":"string"}},"required":["smp","smpId"]},"id":{"$ref":"#/components/schemas/OrderIdV2Input"}},"required":["quantity","leverage","signature","chainId","id"]}}}},"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/OrderIdOutput"},"user":{"type":"string"},"instrument":{"type":"string"},"type":{"type":"string","enum":["LIMIT","MARKET","STOP","STOP_LIMIT"]},"side":{"$ref":"#/components/schemas/Side"},"status":{"type":"string","enum":["INTENTION","NEW","PARTIALLY_FILLED","FILLED","CANCELLED","REJECTED","EXPIRED","REPLACED","ERROR"]},"rejectedReason":{"type":"string"},"quantity":{"type":"number"},"limitPrice":{"type":"number"},"stopPrice":{"type":["number","null"]},"group":{"type":"string","enum":["manually","tpsl","take-profit","stop-loss","liquidation","adl","otc","otc-hidden"]},"unFilledQuantity":{"type":"number"},"cashQuantity":{"type":"number"},"filledAvgPrice":{"type":"number"},"realizedPnL":{"type":"number"},"fee":{"type":"array","items":{"type":"object","properties":{"coin":{"type":"string"},"quantity":{"type":"number"}},"required":["coin","quantity"]}},"triggeredAt":{"type":["string","null"]},"exchangeRequestId":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","user","instrument","type","side","status","rejectedReason","quantity","limitPrice","stopPrice","group","unFilledQuantity","cashQuantity","filledAvgPrice","realizedPnL","fee","triggeredAt","createdAt","updatedAt"]}}}}}}},"/api/v2/order/stop-limit":{"post":{"tags":["Order"],"security":[{"AccessToken":[]}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"instrument":{"type":"string"},"side":{"$ref":"#/components/schemas/Side"},"leverage":{"type":"integer","minimum":1,"maximum":300,"default":1},"quantity":{"anyOf":[{"type":"string"},{"type":"number"}]},"limitPrice":{"anyOf":[{"type":"string"},{"type":"number"}]},"stopPrice":{"anyOf":[{"type":"string"},{"type":"number"}]},"tpsl":{"type":["array","null"],"items":{"type":"object","properties":{"type":{"type":"string","enum":["take-profit","stop-loss"]},"side":{"$ref":"#/components/schemas/Side"},"quantity":{"anyOf":[{"type":"string"},{"type":"number"}],"description":"Zero for full position"},"price":{"anyOf":[{"type":"string"},{"type":"number"}]}},"required":["type","side","quantity","price"]}},"signature":{"type":"string"},"chainId":{"type":"string"},"smp":{"type":"object","properties":{"smp":{"type":"boolean"},"smpId":{"type":"string"}},"required":["smp","smpId"]},"id":{"$ref":"#/components/schemas/OrderIdV2Input"}},"required":["instrument","side","quantity","limitPrice","stopPrice","signature","chainId","id"]}}}},"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/OrderIdOutput"},"user":{"type":"string"},"instrument":{"type":"string"},"type":{"type":"string","enum":["LIMIT","MARKET","STOP","STOP_LIMIT"]},"side":{"$ref":"#/components/schemas/Side"},"status":{"type":"string","enum":["INTENTION","NEW","PARTIALLY_FILLED","FILLED","CANCELLED","REJECTED","EXPIRED","REPLACED","ERROR"]},"rejectedReason":{"type":"string"},"quantity":{"type":"number"},"limitPrice":{"type":"number"},"stopPrice":{"type":["number","null"]},"group":{"type":"string","enum":["manually","tpsl","take-profit","stop-loss","liquidation","adl","otc","otc-hidden"]},"unFilledQuantity":{"type":"number"},"cashQuantity":{"type":"number"},"filledAvgPrice":{"type":"number"},"realizedPnL":{"type":"number"},"fee":{"type":"array","items":{"type":"object","properties":{"coin":{"type":"string"},"quantity":{"type":"number"}},"required":["coin","quantity"]}},"triggeredAt":{"type":["string","null"]},"exchangeRequestId":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","user","instrument","type","side","status","rejectedReason","quantity","limitPrice","stopPrice","group","unFilledQuantity","cashQuantity","filledAvgPrice","realizedPnL","fee","triggeredAt","createdAt","updatedAt"]}}}}}}},"/api/v2/order/market":{"post":{"tags":["Order"],"security":[{"AccessToken":[]}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"instrument":{"type":"string"},"side":{"$ref":"#/components/schemas/Side"},"leverage":{"type":"integer","minimum":1,"maximum":300,"default":1},"cashQuantity":{"anyOf":[{"type":"string"},{"type":"number"}]},"timeInForce":{"type":"string","enum":["FOK","IOC"]},"tpsl":{"type":["array","null"],"items":{"type":"object","properties":{"type":{"type":"string","enum":["take-profit","stop-loss"]},"side":{"$ref":"#/components/schemas/Side"},"quantity":{"anyOf":[{"type":"string"},{"type":"number"}],"description":"Zero for full position"},"price":{"anyOf":[{"type":"string"},{"type":"number"}]}},"required":["type","side","quantity","price"]}},"signature":{"type":"string"},"chainId":{"type":"string"},"smp":{"type":"object","properties":{"smp":{"type":"boolean"},"smpId":{"type":"string"}},"required":["smp","smpId"]},"id":{"$ref":"#/components/schemas/OrderIdV2Input"}},"required":["instrument","side","cashQuantity","timeInForce","signature","chainId","id"]}}}},"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/OrderIdOutput"},"user":{"type":"string"},"instrument":{"type":"string"},"type":{"type":"string","enum":["LIMIT","MARKET","STOP","STOP_LIMIT"]},"side":{"$ref":"#/components/schemas/Side"},"status":{"type":"string","enum":["INTENTION","NEW","PARTIALLY_FILLED","FILLED","CANCELLED","REJECTED","EXPIRED","REPLACED","ERROR"]},"rejectedReason":{"type":"string"},"quantity":{"type":"number"},"limitPrice":{"type":"number"},"stopPrice":{"type":["number","null"]},"group":{"type":"string","enum":["manually","tpsl","take-profit","stop-loss","liquidation","adl","otc","otc-hidden"]},"unFilledQuantity":{"type":"number"},"cashQuantity":{"type":"number"},"filledAvgPrice":{"type":"number"},"realizedPnL":{"type":"number"},"fee":{"type":"array","items":{"type":"object","properties":{"coin":{"type":"string"},"quantity":{"type":"number"}},"required":["coin","quantity"]}},"triggeredAt":{"type":["string","null"]},"exchangeRequestId":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","user","instrument","type","side","status","rejectedReason","quantity","limitPrice","stopPrice","group","unFilledQuantity","cashQuantity","filledAvgPrice","realizedPnL","fee","triggeredAt","createdAt","updatedAt"]}}}}}}},"/api/v2/order/limit":{"post":{"tags":["Order"],"security":[{"AccessToken":[]}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"instrument":{"type":"string"},"side":{"$ref":"#/components/schemas/Side"},"leverage":{"type":"integer","minimum":1,"maximum":300,"default":1},"timeInForce":{"type":"string","enum":["DAY","GTC","FOK","IOC"],"default":"GTC"},"quantity":{"anyOf":[{"type":"string"},{"type":"number"}]},"limitPrice":{"anyOf":[{"type":"string"},{"type":"number"}]},"tpsl":{"type":["array","null"],"items":{"type":"object","properties":{"type":{"type":"string","enum":["take-profit","stop-loss"]},"side":{"$ref":"#/components/schemas/Side"},"quantity":{"anyOf":[{"type":"string"},{"type":"number"}],"description":"Zero for full position"},"price":{"anyOf":[{"type":"string"},{"type":"number"}]}},"required":["type","side","quantity","price"]}},"postOnly":{"type":"string"},"signature":{"type":"string"},"chainId":{"type":"string"},"smp":{"type":"object","properties":{"smp":{"type":"boolean"},"smpId":{"type":"string"}},"required":["smp","smpId"]},"id":{"$ref":"#/components/schemas/OrderIdV2Input"}},"required":["instrument","side","quantity","limitPrice","signature","chainId","id"]}}}},"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/OrderIdOutput"},"user":{"type":"string"},"instrument":{"type":"string"},"type":{"type":"string","enum":["LIMIT","MARKET","STOP","STOP_LIMIT"]},"side":{"$ref":"#/components/schemas/Side"},"status":{"type":"string","enum":["INTENTION","NEW","PARTIALLY_FILLED","FILLED","CANCELLED","REJECTED","EXPIRED","REPLACED","ERROR"]},"rejectedReason":{"type":"string"},"quantity":{"type":"number"},"limitPrice":{"type":"number"},"stopPrice":{"type":["number","null"]},"group":{"type":"string","enum":["manually","tpsl","take-profit","stop-loss","liquidation","adl","otc","otc-hidden"]},"unFilledQuantity":{"type":"number"},"cashQuantity":{"type":"number"},"filledAvgPrice":{"type":"number"},"realizedPnL":{"type":"number"},"fee":{"type":"array","items":{"type":"object","properties":{"coin":{"type":"string"},"quantity":{"type":"number"}},"required":["coin","quantity"]}},"triggeredAt":{"type":["string","null"]},"exchangeRequestId":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","user","instrument","type","side","status","rejectedReason","quantity","limitPrice","stopPrice","group","unFilledQuantity","cashQuantity","filledAvgPrice","realizedPnL","fee","triggeredAt","createdAt","updatedAt"]}}}}}}},"/api/v2/order/mass-limit/{instrument}":{"post":{"tags":["Order"],"security":[{"AccessToken":[]}],"parameters":[{"in":"path","name":"instrument","schema":{"type":"string"},"required":true}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"array","items":{"type":"object","properties":{"instrument":{"type":"string"},"side":{"$ref":"#/components/schemas/Side"},"leverage":{"type":"integer","minimum":1,"maximum":300,"default":1},"timeInForce":{"type":"string","enum":["DAY","GTC","FOK","IOC"],"default":"GTC"},"quantity":{"anyOf":[{"type":"string"},{"type":"number"}]},"limitPrice":{"anyOf":[{"type":"string"},{"type":"number"}]},"postOnly":{"type":"string"},"signature":{"type":"string"},"chainId":{"type":"string"},"smp":{"type":"object","properties":{"smp":{"type":"boolean"},"smpId":{"type":"string"}},"required":["smp","smpId"]},"id":{"$ref":"#/components/schemas/OrderIdV2Input"}},"required":["instrument","side","quantity","limitPrice","signature","chainId","id"]},"maxItems":20}}}},"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"type":"array","items":{"allOf":[{"type":"object","properties":{"orderId":{"$ref":"#/components/schemas/OrderIdOutput"}},"required":["orderId"]},{"anyOf":[{"type":"object","properties":{"success":{"type":"boolean","const":true}},"required":["success"]},{"type":"object","properties":{"success":{"type":"boolean","const":false},"failReason":{"type":"string"}},"required":["success","failReason"]}]}]}}}}}}}},"/api/user/image/check":{"get":{"tags":["UserImage"],"security":[{"AccessToken":[]}],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserImageStateResponse"}}}}}}},"/api/user/{userId}":{"put":{"tags":["User"],"security":[{"AccessToken":[]}],"parameters":[{"in":"path","name":"userId","description":"UserId","schema":{"type":"string","description":"UserId"},"required":true}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/UpdateUserBody"}}}},"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserUpdateResponse"}}}}}}},"/api/user/statistics":{"get":{"tags":["User"],"security":[{"AccessToken":[]}],"parameters":[{"in":"query","name":"after","schema":{"type":"string","default":"2026-07-25T13:42:45.165Z"}},{"in":"query","name":"before","schema":{"type":"string","default":"2026-08-25T13:42:45.166Z"}},{"in":"query","name":"group","schema":{"type":["string","null"],"enum":["day","week","month","year"],"default":"month"}}],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserStatisticsResponse"}}}}}}},"/api/user/sign-up/{wallet}/check":{"get":{"tags":["User"],"security":[],"parameters":[{"in":"path","name":"wallet","schema":{"type":"string"},"required":true}],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CheckSignUpBadgeResponse"}}}}}}},"/api/user/sign-up/quota":{"get":{"tags":["User"],"security":[],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SignUpQuotaResponse"}}}}}}},"/api/user/me":{"get":{"tags":["User"],"security":[{"AccessToken":[]}],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/User"}}}}}}},"/api/user/list":{"get":{"tags":["User"],"security":[{"AccessToken":[]}],"parameters":[{"in":"query","name":"authId","schema":{"type":"string","format":"uuid"}},{"in":"query","name":"search","schema":{"type":"string","minLength":3}},{"in":"query","name":"limit","schema":{"$ref":"#/components/schemas/PageLimitParam"}},{"in":"query","name":"offset","schema":{"$ref":"#/components/schemas/PageOffsetParam"}}],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserList"}}}}}}},"/api/user/faucet/check":{"get":{"tags":["User"],"security":[{"AccessToken":[]}],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"type":"object","properties":{"ok":{"type":"boolean"},"ttl":{"type":"number"}},"required":["ok","ttl"]}}}}}}},"/api/user/faucet":{"post":{"tags":["User"],"security":[{"AccessToken":[]}],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmptyResponse"}}}}}}},"/api/user/balance/chart":{"get":{"tags":["User"],"security":[{"AccessToken":[]}],"parameters":[{"in":"query","name":"after","schema":{"type":"string","default":"2026-07-25T13:42:45.170Z"}},{"in":"query","name":"before","schema":{"type":"string","default":"2026-08-25T13:42:45.171Z"}},{"in":"query","name":"group","schema":{"type":"string","enum":["hour","day","week","month","year"],"default":"month"}},{"in":"query","name":"sort","schema":{"type":"string","enum":["date-asc","date-desc"],"default":"date-desc"}}],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BalanceChart"}}}}}}},"/api/user/balance":{"get":{"tags":["User"],"deprecated":true,"description":"Use GET /auth/user/balance from auth-backend instead","security":[{"AccessToken":[]}],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/BalanceItem"}}}}}}}},"/api/user/account":{"post":{"tags":["User"],"security":[{"AccessToken":[]}],"requestBody":{"required":false,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/CreateAccountBody"}}}},"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/User"}}}}}}},"/api/user/yield/status":{"get":{"tags":["Yield"],"security":[{"AccessToken":[]}],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/YieldStatusObject"}}}}}}},"/api/user/yield/earned":{"get":{"tags":["User"],"security":[{"AccessToken":[]}],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/UserYieldEarned"}}}}}}},"/api/user/oct/delegate":{"get":{"tags":["User"],"security":[{"AccessToken":[]}],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DelegateList"}}}}}}},"/api/user/funding-transfer":{"get":{"tags":["User"],"security":[{"AccessToken":[]}],"parameters":[{"in":"query","name":"after","schema":{"type":"string"}},{"in":"query","name":"before","schema":{"type":"string"}},{"in":"query","name":"offset","schema":{"$ref":"#/components/schemas/PageOffsetParam"}},{"in":"query","name":"limit","schema":{"$ref":"#/components/schemas/PageLimitParam"}}],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"type":"object","properties":{"list":{"type":"array","items":{"$ref":"#/components/schemas/FundingTransferObject"}},"count":{"type":"number"},"next":{"type":"string"}},"required":["list","count"]}}}}}}},"/api/user/funding":{"get":{"tags":["User"],"security":[{"AccessToken":[]}],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/FundingObject"}}}}}}}},"/api/user/api-key/{apiKeyId}":{"put":{"deprecated":true,"tags":["User"],"security":[{"AccessToken":[]}],"parameters":[{"in":"path","name":"apiKeyId","schema":{"type":"string","format":"uuid"},"required":true}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiKeyUpdateBody"}}}},"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/EmptyResponse"}}}}}},"delete":{"deprecated":true,"tags":["User"],"security":[{"AccessToken":[]}],"parameters":[{"in":"path","name":"apiKeyId","schema":{"type":"string","format":"uuid"},"required":true}],"responses":{}}},"/api/user/api-key/{apiKeyId}/regenerate":{"put":{"deprecated":true,"tags":["User"],"security":[{"AccessToken":[]}],"parameters":[{"in":"path","name":"apiKeyId","schema":{"type":"string","format":"uuid"},"required":true}],"responses":{}}},"/api/user/api-key":{"get":{"deprecated":true,"tags":["User"],"security":[{"AccessToken":[]}],"parameters":[{"in":"query","name":"withDeleted","schema":{"type":"string"}},{"in":"query","name":"withExpired","schema":{"type":"string"}},{"in":"query","name":"limit","schema":{"$ref":"#/components/schemas/PageLimitParam"}},{"in":"query","name":"offset","schema":{"$ref":"#/components/schemas/PageOffsetParam"}}],"responses":{}},"post":{"deprecated":true,"tags":["User"],"security":[{"AccessToken":[]}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ApiKeyCreateBody"}}}},"responses":{}}},"/api/transfer":{"get":{"tags":["Transfer"],"description":"Serves only not-yet-on-chain transfers","security":[{"AccessToken":[]}],"parameters":[{"in":"query","name":"status","schema":{"anyOf":[{"type":"string","enum":["pending","blocked","done","error"]},{"type":"array","items":{"type":"string","enum":["pending","blocked","done","error"]}}]}},{"in":"query","name":"type","schema":{"anyOf":[{"type":"string","enum":["deposit","withdraw","transfer-pfutures-balance","transfer-balance-pfutures","paymaster-fee","paymaster-refund","cashback-withdraw","lucky-shot-withdraw","transfer-balance-sub-pfutures"]},{"type":"array","items":{"type":"string","enum":["deposit","withdraw","transfer-pfutures-balance","transfer-balance-pfutures","paymaster-fee","paymaster-refund","cashback-withdraw","lucky-shot-withdraw","transfer-balance-sub-pfutures"]}}]}},{"in":"query","name":"after","schema":{"type":["string","null"]}},{"in":"query","name":"before","schema":{"type":["string","null"]}},{"in":"query","name":"limit","schema":{"$ref":"#/components/schemas/PageLimitParam"}},{"in":"query","name":"offset","schema":{"$ref":"#/components/schemas/PageOffsetParam"}}],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TransferListObject"}}}}}}},"/api/transfer/detail":{"get":{"tags":["Transfer"],"security":[{"AccessToken":[]}],"parameters":[{"in":"query","name":"target","description":"Smart account or wallet address","schema":{"type":"string","description":"Smart account or wallet address"},"required":true}],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"type":"object","properties":{"smartAccountAddress":{"type":"string"},"email":{"type":["string","null"]}},"required":["smartAccountAddress","email"]}}}}}}},"/api/transfer/pf/withdraw":{"post":{"tags":["Transfer"],"security":[{"AccessToken":[]}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"recipient":{"type":"string"},"currency":{"type":"string","enum":["usdt"],"default":"usdt"},"amount":{"anyOf":[{"type":"number"},{"type":"string"}]},"signature":{"type":"string"},"twofa":{"type":"object","properties":{"code":{"type":"string"}},"required":["code"]}},"required":["recipient","amount","signature"]}}}},"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TransferObject"}}}}}}},"/api/trade/signal":{"get":{"tags":["Trade signal"],"security":[{"AccessToken":[]}],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TradeSignalListResponse"}}}}}},"post":{"tags":["Trade signal"],"security":[{"AccessToken":[]}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TradeSignalCreateBody"}}}},"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TradeSignalItem"}}}}}}},"/api/trade/signal/{id}":{"get":{"tags":["Trade signal"],"security":[],"parameters":[{"in":"path","name":"id","schema":{"type":"string"},"required":true}],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TradeSignalItemWithUser"}}}}}}},"/api/tpsl/{instrument}/{id}":{"put":{"tags":["TpSl"],"security":[{"AccessToken":[]}],"parameters":[{"in":"path","name":"instrument","schema":{"type":"string"},"required":true},{"in":"path","name":"id","schema":{"type":"string"},"required":true}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","enum":["take-profit","stop-loss"]},"side":{"$ref":"#/components/schemas/Side"},"quantity":{"anyOf":[{"type":"string"},{"type":"number"}],"description":"Zero for full position"},"price":{"anyOf":[{"type":"string"},{"type":"number"}]},"signature":{"type":"string"}},"required":["type","side","quantity","price","signature"]}}}},"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"instrument":{"type":"string"},"type":{"type":"string","enum":["take-profit","stop-loss"]},"side":{"$ref":"#/components/schemas/Side"},"quantity":{"type":"string","description":"Zero for full position"},"price":{"type":"string"},"status":{"type":"string","enum":["waitOrder","active","process","triggered","done","cancelled"]},"triggerOrder":{"oneOf":[{"$ref":"#/components/schemas/OrderIdOutput"},{"type":"null"}]},"triggeredQuantity":{"type":"string"},"cancelledReason":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","instrument","type","side","quantity","price","status","triggerOrder","triggeredQuantity","cancelledReason","createdAt","updatedAt"]}}}}}},"delete":{"tags":["TpSl"],"security":[{"AccessToken":[]}],"parameters":[{"in":"path","name":"instrument","schema":{"type":"string"},"required":true},{"in":"path","name":"id","schema":{"type":"string"},"required":true}],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"instrument":{"type":"string"},"type":{"type":"string","enum":["take-profit","stop-loss"]},"side":{"$ref":"#/components/schemas/Side"},"quantity":{"type":"string","description":"Zero for full position"},"price":{"type":"string"},"status":{"type":"string","enum":["waitOrder","active","process","triggered","done","cancelled"]},"triggerOrder":{"oneOf":[{"$ref":"#/components/schemas/OrderIdOutput"},{"type":"null"}]},"triggeredQuantity":{"type":"string"},"cancelledReason":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","instrument","type","side","quantity","price","status","triggerOrder","triggeredQuantity","cancelledReason","createdAt","updatedAt"]}}}}}}},"/api/tpsl":{"get":{"tags":["TpSl"],"security":[{"AccessToken":[]}],"parameters":[{"in":"query","name":"instrument","schema":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}]}},{"in":"query","name":"status","schema":{"anyOf":[{"type":"string","enum":["waitOrder","active","process","triggered","done","cancelled"]},{"type":"array","items":{"type":"string","enum":["waitOrder","active","process","triggered","done","cancelled"]}}]}},{"in":"query","name":"type","schema":{"type":"string","enum":["take-profit","stop-loss"]}},{"in":"query","name":"triggeredOrder","schema":{"anyOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}]}},{"in":"query","name":"offset","schema":{"$ref":"#/components/schemas/PageOffsetParam"}},{"in":"query","name":"limit","schema":{"$ref":"#/components/schemas/TpSlListPageLimitParam"}}],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"type":"object","properties":{"list":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"instrument":{"type":"string"},"type":{"type":"string","enum":["take-profit","stop-loss"]},"side":{"$ref":"#/components/schemas/Side"},"quantity":{"type":"string","description":"Zero for full position"},"price":{"type":"string"},"status":{"type":"string","enum":["waitOrder","active","process","triggered","done","cancelled"]},"triggerOrder":{"oneOf":[{"$ref":"#/components/schemas/OrderIdOutput"},{"type":"null"}]},"triggeredQuantity":{"type":"string"},"cancelledReason":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","instrument","type","side","quantity","price","status","triggerOrder","triggeredQuantity","cancelledReason","createdAt","updatedAt"]}},"count":{"type":"number"},"next":{"type":"string"}},"required":["list","count"]}}}}}}},"/api/tpsl/{instrument}":{"post":{"tags":["TpSl"],"security":[{"AccessToken":[]}],"parameters":[{"in":"path","name":"instrument","schema":{"type":"string"},"required":true}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"type":{"type":"string","enum":["take-profit","stop-loss"]},"side":{"$ref":"#/components/schemas/Side"},"quantity":{"anyOf":[{"type":"string"},{"type":"number"}],"description":"Zero for full position"},"price":{"anyOf":[{"type":"string"},{"type":"number"}]},"order":{"anyOf":[{"$ref":"#/components/schemas/OrderIdInput"},{"$ref":"#/components/schemas/OrderIdV2Input"},{"type":"null"}]},"signature":{"type":"string"}},"required":["type","side","quantity","price","order","signature"]}}}},"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string"},"instrument":{"type":"string"},"type":{"type":"string","enum":["take-profit","stop-loss"]},"side":{"$ref":"#/components/schemas/Side"},"quantity":{"type":"string","description":"Zero for full position"},"price":{"type":"string"},"status":{"type":"string","enum":["waitOrder","active","process","triggered","done","cancelled"]},"triggerOrder":{"oneOf":[{"$ref":"#/components/schemas/OrderIdOutput"},{"type":"null"}]},"triggeredQuantity":{"type":"string"},"cancelledReason":{"type":"string"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"}},"required":["id","instrument","type","side","quantity","price","status","triggerOrder","triggeredQuantity","cancelledReason","createdAt","updatedAt"]}}}}}}},"/api/smart-account/validate":{"post":{"tags":["SmartAccount"],"security":[{"AccessToken":[]}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ValidateSmartAccountsBody"}}}},"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ValidateSmartAccountsResponse"}}}}}}},"/api/public/{authId}/profile":{"get":{"tags":["Public profile"],"security":[{"AccessToken":[]}],"parameters":[{"in":"path","name":"authId","description":"AuthId","schema":{"type":"string","description":"AuthId"},"required":true}],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string","description":"UserId"},"authId":{"type":"string","description":"AuthId"},"statistics":{"$ref":"#/components/schemas/UserStatisticsResponse"},"chart":{"$ref":"#/components/schemas/BalanceChart"},"positionHistory":{"type":"array","items":{"$ref":"#/components/schemas/PositionHistoryFillObject"}},"updatedAt":{"type":"string"}},"required":["updatedAt"]}}}}}}},"/api/public/yield/apr":{"get":{"tags":["Yield"],"security":[],"parameters":[{"in":"query","name":"days","schema":{"type":"integer","minimum":1,"maximum":365,"default":7}}],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/YieldAprObject"}}}}}}},"/api/public/statistics/total":{"get":{"tags":["Statistics"],"security":[],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/TotalStatisticResponse"}}}}}}},"/api/public/statistics/online-users":{"get":{"tags":["Statistics"],"security":[],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/OnlineUsersCountResponse"}}}}}}},"/api/public/statistics/charts":{"get":{"tags":["Statistics"],"security":[],"parameters":[{"in":"query","name":"from","schema":{"type":"string"},"required":true},{"in":"query","name":"to","schema":{"type":"string"},"required":true},{"in":"query","name":"instrument","schema":{"type":"string"}},{"in":"query","name":"name","schema":{"type":"string","enum":["tradingVolume","userRegistred","activeDepositors","feesVolume","totalValueLocked"]}}],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/StatisticChartResponse"}}}}}}},"/api/position/{instrument}":{"put":{"tags":["Position"],"security":[{"AccessToken":[]}],"parameters":[{"in":"path","name":"instrument","schema":{"type":"string"},"required":true}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","properties":{"leverage":{"type":"integer","minimum":1,"maximum":300}},"required":["leverage"]}}}},"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"type":"object","properties":{"instrument":{"type":"string"},"side":{"$ref":"#/components/schemas/Side"},"quantity":{"type":"number"},"avgPrice":{"type":"number"},"leverage":{"type":"number"},"maintenanceMargin":{"type":"number"}},"required":["instrument","side","quantity","avgPrice","leverage","maintenanceMargin"]}}}}}}},"/api/position":{"get":{"tags":["Position"],"security":[{"AccessToken":[]}],"parameters":[{"in":"query","name":"side","schema":{"oneOf":[{"$ref":"#/components/schemas/Side"},{"type":"null"}]}},{"in":"query","name":"withTpSL","schema":{"type":"string"}}],"responses":{"200":{"description":"200 OK","content":{"application/json":{"schema":{"type":"object","properties":{"list":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"user":{"type":"string"},"instrument":{"type":"string"},"side":{"$ref":"#/components/schemas/Side"},"quantity":{"type":"number"},"avgPrice":{"type":"number"},"leverage":{"type":"number"},"maintenanceMargin":{"type":"number"},"fundingRate":{"type":"number"},"createdAt":{"type":"string"},"updatedAt":{"type":"string"},"unRealizedPnL":{"type":"number"},"adlLevel":{"type":"number"},"fee":{"type":"number"},"bankruptcyPrice":{"type":["number","null"]},"tpslList":{"type":"array","items":{"type":"object","properties":{"id":{"type":"string"},"instrument":{"type":"string"},"type":{"type":"string","enum":["take-profit","stop-loss"]},"side":{"$ref":"#/components/schemas/Side"},"quantity":

# --- truncated at 32 KB (129 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/evedex/refs/heads/main/openapi/evedex-exchange-openapi.json