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

# ऑर्डर सूची

> पेजिनेशन और फ़िल्टर के साथ अपने ऑर्डर सूचीबद्ध करें

## ऑर्डर सूची

आपके ऑर्डर की पेजिनेटेड सूची लौटाता है, नवीनतम पहले।

### क्वेरी पैरामीटर

<ParamField query="page" type="number">
  पेज संख्या (डिफ़ॉल्ट 1)
</ParamField>

<ParamField query="page_size" type="number">
  प्रति पेज परिणाम (डिफ़ॉल्ट 50, अधिकतम 100)
</ParamField>

<ParamField query="status" type="string">
  स्थिति के अनुसार फ़िल्टर करें (जैसे `filled`, `pending`, `failed`)
</ParamField>

<ParamField query="type" type="string">
  ऑर्डर प्रकार के अनुसार फ़िल्टर करें — `energy` या `bandwidth`
</ParamField>

### रिस्पॉन्स

`orders` (ऑर्डर ऑब्जेक्ट की सरणी), `total`, `page` और `page_size` लौटाता है।

### उदाहरण

```bash theme={null}
curl "https://api.tronrental.com/v1/orders?type=energy&status=filled&page=1" \
  -H "X-API-Key: your_api_key"
```

```json Response theme={null}
{
  "orders": [
    {
      "id": 12345,
      "type": "energy",
      "target_address": "TRecipientAddress...",
      "volume": 65000,
      "duration": "1h",
      "price_trx": "1.79",
      "status": "filled",
      "delegate_txid": "a1b2c3d4e5f6...",
      "undelegate_txid": null,
      "reclaim_at": null,
      "source": "api",
      "created_at": "2026-06-10T04:30:00Z"
    }
  ],
  "total": 42,
  "page": 1,
  "page_size": 50
}
```
