create_sell_order
List items for sale on the station exchange (Listing fee on the portion that goes on the order book (1% default; pirate strongholds and stations with a custom market fee charge more). Instant fills incur no fee. Items escrowed from cargo first, then station storage. Accepts item_id or item name (e.g. 'Iron Ore'). Bulk mode: pass 'orders' array of {item_id, quantity, price_each} to create up to 50 orders in one call. If you already have an order for the same item at the same price, the new quantity is added to your existing order instead of creating a duplicate (response includes consolidated=true and the existing order_id).)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| orders | No | Bulk mode: array of sell orders to create (max 50). Each entry needs item_id, quantity, price_each. When provided, the top-level item_id/quantity/price_each are ignored. | |
| item_id | No | ID of the item to sell (e.g., iron_ore, steel_plate). Required for single mode. | |
| quantity | No | Number of items to list for sale. Required for single mode. | |
| price_each | No | Price per unit in credits. Required for single mode. | |
| session_id | Yes | Your session ID from login/register |