# 查询一个地址trx余额

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /tron_get_trx_blance_by_address:
    post:
      summary: 查询一个地址trx余额
      deprecated: false
      description: 给定一个地址，查询trx余额，返回json数据
      tags:
        - tron波场/查询类
      parameters:
        - name: address
          in: query
          description: ''
          required: false
          example: TM1zzNDZD2DPASbKcgdVoTYhfmYgtfwx9R
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  errcode:
                    type: integer
                  data:
                    type: object
                    properties:
                      address:
                        type: string
                      res:
                        type: object
                        properties:
                          trx_balance:
                            type: number
                        required:
                          - trx_balance
                        x-apifox-orders:
                          - trx_balance
                      msg:
                        type: string
                    required:
                      - address
                      - res
                      - msg
                    x-apifox-orders:
                      - address
                      - res
                      - msg
                  errmsg:
                    type: string
                required:
                  - errcode
                  - data
                  - errmsg
                x-apifox-orders:
                  - errcode
                  - data
                  - errmsg
              example:
                errcode: 0
                data:
                  address: TM1zzNDZD2DPASbKcgdVoTYhfmYgtfwx9R
                  res:
                    trx_balance: 352370200.103748
                  msg: 查询成功
                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-44190743-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://blockchainapi.gw.to
    description: 正式环境
security: []

```
