# 获取域名列表

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /v1/domain/list:
    post:
      summary: 获取域名列表
      deprecated: false
      description: ''
      tags:
        - 域名
      parameters: []
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                token:
                  description: 后台生成的token
                  example: '{{token}}'
                  type: string
                page:
                  description: 页码
                  example: 1
                  type: integer
                limit:
                  description: 每页数量（最大20）
                  example: 20
                  type: integer
                group_pay_id:
                  description: >-
                    根据付费组ID筛选(付费组ID，可在脆球后台获取，或者通过/v1/group-pay/list接口获取，id字段即为group_pay_id)
                  example: '1'
                  type: string
                domain:
                  description: 根据域名筛选
                  example: a.com
                  type: string
                mark:
                  description: 根据备注筛选
                  example: 备注
                  type: string
              required:
                - token
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: integer
                  msg:
                    type: string
                  data:
                    type: 'null'
                required:
                  - code
                  - msg
                  - data
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: 域名
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/2485881/apis/api-70565731-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: https://domain-open-api.cuiqiu.com
    description: 正式环境
security: []

```
