# 请求一个新帐户

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /tron_get_new_address:
    get:
      summary: 请求一个新帐户
      deprecated: false
      description: 请求一个新地址  返回json   包括地址跟私钥
      tags:
        - tron波场/查询类
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  errcode:
                    type: integer
                  data:
                    type: object
                    properties:
                      address:
                        type: string
                      privatekey:
                        type: string
                    required:
                      - address
                      - privatekey
                    x-apifox-orders:
                      - address
                      - privatekey
                  errmsg:
                    type: string
                required:
                  - errcode
                  - data
                  - errmsg
                x-apifox-orders:
                  - errcode
                  - data
                  - errmsg
              example:
                errcode: 0
                data:
                  address: THFFDecKQqkCwTNNU2RMbDqSYN1UoR8vAC
                  privatekey: >-
                    825bc32fe5860aabe21c21bdb8a0adbefb8aa0e3326bbdbf6c2c0251e41577bd
                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-44190198-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://blockchainapi.gw.to
    description: 正式环境
security: []

```
