> ## Documentation Index
> Fetch the complete documentation index at: https://docs.projectdiscovery.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Export Enumeration of user

> Export the list of discovered assets for all enumerations.



## OpenAPI

````yaml get /v1/asset/enumerate/export
openapi: 3.1.0
info:
  title: PDCP API
  version: '1.0'
  summary: ProjectDiscovery Cloud Platform
  description: >-
    For more details, checkout
    https://docs.projectdiscovery.io/api-reference/editor/scan
servers:
  - url: https://api.projectdiscovery.io
    description: Production
  - url: https://api.dev.projectdiscovery.io
    description: Development
  - url: http://localhost:8085
    description: Localhost
security:
  - X-API-Key: []
paths:
  /v1/asset/enumerate/export:
    parameters:
      - schema:
          type: boolean
        in: query
        name: async
    get:
      tags:
        - enumerations
      summary: Export Enumeration of user
      description: Export the list of discovered assets for all enumerations.
      operationId: get-enumerate-export
      parameters:
        - schema:
            $ref: '#/components/schemas/EnumExportFormats'
          in: query
          name: format
        - schema:
            type: string
          name: search
          in: query
          description: Search on the content name
        - schema:
            type: string
          in: query
          name: labels
          description: Filter by comma separated labels, e.g-> labels=p1,p2
        - schema:
            type: boolean
          in: query
          name: is_new
          description: Filter by new content
        - schema:
            type: string
          in: query
          name: host
          description: Filter by comma separated labels, e.g-> host=p1,p2
        - schema:
            type: string
          in: query
          name: port
          description: Filter by port separated labels, e.g-> port=p1,p2
        - schema:
            type: string
          in: query
          name: status_code
          description: Filter by status code separated labels, e.g-> status_code=p1,p2
        - schema:
            type: string
          in: query
          name: title
          description: Filter by title separated labels, e.g-> title=p1,p2
        - schema:
            type: string
          in: query
          name: content_length
          description: >-
            Filter by content length separated labels, e.g->
            content_length=p1,p2
        - schema:
            type: string
          in: query
          name: domain
          description: >-
            Filter by domain names separated labels, e.g->
            domain=domain1.com,domain2.com
        - schema:
            type: string
          in: query
          name: cname
          description: cname to filter
        - schema:
            type: string
          in: query
          name: technologies
          description: technologies to filter
        - schema:
            type: string
          in: query
          name: sort_asc
          description: comma separated ascending sorting e.g sort_asc=created_at,name
        - schema:
            type: string
          in: query
          name: sort_desc
        - schema:
            $ref: '#/components/schemas/TimeRangeQueryParameter'
            default: all_time
          in: query
          name: time
          description: time filter to select
        - schema:
            type: string
            format: date
          in: query
          name: start_date
          description: time filter start date
        - schema:
            type: string
            format: date
          in: query
          name: end_date
          description: time filter end date
        - schema:
            type: string
          in: header
          description: >-
            Retrieve the Team ID from:
            https://cloud.projectdiscovery.io/settings/team
          name: X-Team-Id
        - schema:
            type: string
          in: query
          name: custom_filter
          description: custom query to filter. double encode the query string.
        - schema:
            type: boolean
          in: query
          name: is_screenshot
        - schema:
            type: string
          in: query
          name: ip
          description: ips to filter
        - schema:
            type: string
          in: query
          name: favicon
          description: Filter by comma separated favicons, e.g-> favicon=p1,p2
        - schema:
            type: boolean
          in: query
          name: only_dns
          description: Query only dns FQDN records
        - schema:
            type: boolean
          in: query
          name: only_ip
          description: Query only dns IP records
      responses:
        '200':
          description: OK
          content:
            application/octet-stream:
              schema:
                type: string
        '201':
          description: Created
          content:
            application/json:
              schema:
                type: object
                properties:
                  export_id:
                    type: string
                required:
                  - export_id
        '400':
          $ref: '#/components/responses/ErrorResponse'
        '401':
          $ref: '#/components/responses/ErrorResponse'
        '500':
          $ref: '#/components/responses/ErrorResponse'
        default:
          $ref: '#/components/responses/ErrorResponse'
      security:
        - X-API-Key: []
components:
  schemas:
    EnumExportFormats:
      title: EnumExportFormats
      type: string
      enum:
        - raw
        - json
        - csv
    TimeRangeQueryParameter:
      title: TimeRangeQueryParameter
      type: string
      enum:
        - last_day
        - last_week
        - last_month
        - last_3_months
        - last_6_months
        - last_12_months
        - all_time
  responses:
    ErrorResponse:
      description: Example response
      content:
        application/json:
          schema:
            type: object
            required:
              - message
            properties:
              message:
                type: string
              kind:
                type: string
              code:
                type: string
              error:
                type: string
              error_id:
                type: string
              param:
                type: string
              status:
                type: integer
  securitySchemes:
    X-API-Key:
      name: X-API-Key
      type: apiKey
      in: header

````