...
GET
/user
: returns the user, confirming that the API key works and who it is for.
...
Asset & Price Data
GET
/api/assets
: Retrieve a list of available markets.assetsGET
/api/assets/prices
: Retrieve detailed information about a specific market.
...
GET
/api/orders
: Retrieve a list of the user's orders.collection of company orders matching filter parametersPOST
/api/order
: Place a new order.GET
/api/orders/{order_ULID}
: Retrieve details of a specific ordera single order record.
Trades
GET
/api/trades
: Retrieves a collection of company trades matching filter parametersGET
/api/trade/{trade_ulid}
: Retrieve a single trade record.
Request and Response Formats
...