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

# Get Order

> Get order details

Retrieve details of a specific order including all items.

## Path Parameters

<ParamField path="id" type="string" required>
  Order ID
</ParamField>

## Headers

<ParamField header="Authorization" type="string" required>
  Bearer token: `Bearer <access_token>`
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://api.finscreener.in/api/orders/order_123" \
    -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  {
    "_id": "order_123",
    "orderName": "IT Companies Data",
    "paymentOption": "credits",
    "total_amount": 500,
    "status": "completed",
    "payment_status": "paid",
    "created_at": "2026-01-15T10:00:00Z",
    "items": [
      {
        "type": "company",
        "name": "TCS Limited",
        "number": "U72200MH2004PTC148441",
        "price": 1
      }
    ]
  }
  ```
</ResponseExample>
