> ## Documentation Index
> Fetch the complete documentation index at: https://docs.numofx.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get order status



## OpenAPI

````yaml GET /v1/orders/{order_id}
openapi: 3.1.0
info:
  title: Numo orderbook API
  description: >-
    REST endpoints exposed by Numo's markets-service and execution-service for
    physically delivered FX futures. Real-time book, trades, and order streams
    are served over the WebSocket endpoint documented in the WebSocket streams
    reference.
  version: 1.0.0
servers:
  - url: https://api.numofx.com
    description: markets-service
  - url: https://executor.numofx.com
    description: execution-service
security: []
tags:
  - name: Markets service
  - name: Execution service
paths:
  /v1/orders/{order_id}:
    get:
      tags:
        - Markets service
      summary: Get order status
      operationId: getOrderStatus
      parameters:
        - name: order_id
          in: path
          required: true
          schema:
            type: string
          description: The order_id returned when the order was created
      responses:
        '200':
          description: Current status and fill snapshot for the order
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrderStatusResponse'
        '404':
          description: Order not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    OrderStatusResponse:
      type: object
      properties:
        order_id:
          type: string
        status:
          type: string
        filled_amount:
          type: string
        remaining_amount:
          type: string
        cancel_reason:
          type: string
        updated_at:
          type: string
          format: date-time
    ErrorResponse:
      type: object
      properties:
        error:
          type: string

````