# Fetch open orders

Fetches all open orders for the user. Open orders are orders that are
 not yet filled, and can be cancelled.

Endpoint: GET /v1/orders
Version: 0.0.1
Security: apiKey

## Response 200 fields (application/json):

  - `orders` (array)

  - `orders.orderId` (string)

  - `orders.type` (string)
    Enum: "ORDER_TYPE_MARKET", "ORDER_TYPE_LIMIT"

  - `orders.direction` (string)
    Enum: "DIRECTION_BUY", "DIRECTION_SELL"

  - `orders.amount` (number)

  - `orders.createdAt` (string)


