# 验证一个地址是合法

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /tron_check_a_address:
    post:
      summary: 验证一个地址是合法
      deprecated: false
      description: 给定一个地址，验证是否是合法地址
      tags:
        - tron波场/查询类
      parameters:
        - name: address
          in: query
          description: '波场地址 '
          required: true
          example: TWD9SgyY3jDkErgkcTf3Tsdcbx6hRruUAN
          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: boolean
                      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: TWD9SgyY3jDkErgkcTf3Tsdcbx6hRruUAN
                  res: true
                  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-44190290-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://blockchainapi.gw.to
    description: 正式环境
security: []

```
