{ "opencollection": "1.0.0", "info": { "name": "Robinhood Crypto Trading Account Orders API", "version": "v1" }, "request": { "auth": { "type": "apikey", "key": "x-api-key", "value": "{{x-api-key}}", "placement": "header" } }, "items": [ { "info": { "name": "Orders", "type": "folder" }, "items": [ { "info": { "name": "List orders", "type": "http" }, "http": { "method": "GET", "url": "https://trading.robinhood.com/api/v1/crypto/trading/orders/", "params": [ { "name": "symbol", "value": "", "type": "query" }, { "name": "side", "value": "", "type": "query" }, { "name": "state", "value": "", "type": "query" }, { "name": "type", "value": "", "type": "query" }, { "name": "created_at_start", "value": "", "type": "query" }, { "name": "created_at_end", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" }, { "name": "cursor", "value": "", "type": "query" } ] }, "docs": "Returns the authenticated user's crypto orders, filterable by symbol, side, state, type, and creation time." }, { "info": { "name": "Place order", "type": "http" }, "http": { "method": "POST", "url": "https://trading.robinhood.com/api/v1/crypto/trading/orders/", "body": { "type": "json", "data": "{}" } }, "docs": "Places a crypto order. Supply a unique client_order_id (idempotency key), the side, symbol, and the order type with its matching configuration object (market/limit/stop-loss/stop-limit)." }, { "info": { "name": "Get order", "type": "http" }, "http": { "method": "GET", "url": "https://trading.robinhood.com/api/v1/crypto/trading/orders/:id/", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Returns a single crypto order by its identifier." }, { "info": { "name": "Cancel order", "type": "http" }, "http": { "method": "POST", "url": "https://trading.robinhood.com/api/v1/crypto/trading/orders/:id/cancel/", "params": [ { "name": "id", "value": "", "type": "path" } ] }, "docs": "Requests cancellation of an open crypto order by its identifier." } ] } ], "bundled": true }