# Get Tron energy cost estimate for an address

`GET /v1/payment/tron-energy/cost`

## Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `address` | query | string | required | Tron wallet address to check energy cost for |

## Example (curl)

```bash
curl -X GET 'https://api.waxpeer.com/v1/payment/tron-energy/cost?address=TXYZexampleTronAddress'
```

## Example response

```json
{
  "success": true,
  "cost": 65000,
  "msg": "string"
}
```

## Responses

- `200` successful operation

## Notes for agents

- Auth is the query parameter `api`, not an Authorization header.
- See [/statuses.md](/statuses.md) for numeric trade status plus `escrow_status` / `release_date`.
- Prefer GET /v2/search-items-by-name over v1.
- Do not use GET /v1/ready-to-transfer-p2p; use the [trade websocket](/websocket.md).
