# 查询trx对usdt价格

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /tron_get_trx_price_with_usdt:
    get:
      summary: 查询trx对usdt价格
      deprecated: false
      description: 查询trx价格,以usdt计算,返回json数据
      tags:
        - tron波场/查询类
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  errcode:
                    type: integer
                  data:
                    type: object
                    properties:
                      usdt_trx:
                        type: string
                    required:
                      - usdt_trx
                    x-apifox-orders:
                      - usdt_trx
                  errmsg:
                    type: string
                required:
                  - errcode
                  - data
                  - errmsg
                x-apifox-orders:
                  - errcode
                  - data
                  - errmsg
              example:
                errcode: 0
                data:
                  usdt_trx: '0.06374'
                errmsg: ''
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: tron波场/查询类
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/1761505/apis/api-44146054-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://blockchainapi.gw.to
    description: 正式环境
security: []

```
