> ## Documentation Index
> Fetch the complete documentation index at: https://bmpdocs.moneyp.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# 76 - List CNAEs

> <p>Scopes:</p>
<b>api.ext api.onboarding.conta.listarcnae</b>

Use this request to list all available CNAEs.


## OpenAPI

````yaml get /v1/api/OnboardingContas/Cnaes
openapi: 3.0.1
info:
  title: BMPSPBExt
  description: '<p><strong>Build Number: </strong>#0.0</p>'
  version: v1
servers:
  - url: https://api.ext.dbs.moneyp.dev.br/
    description: Localhost
security:
  - Bearer: []
paths:
  /v1/api/OnboardingContas/Cnaes:
    get:
      tags:
        - Cnaes
      summary: Listar todos os cnaes disponíveis
      description: "<p>Scopes:</p>\r\n<b>api.ext api.onboarding.conta.listarcnae</b>"
      parameters:
        - name: filtro
          in: query
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: >-
                    #/components/schemas/BMPSPB.Domain.Messaging.API.Interna.Correntista.CnaeResponse
        '400':
          description: Erro de negócio
          content:
            application/json:
              schema:
                type: object
                properties:
                  sucesso:
                    type: boolean
                  mensagem:
                    type: string
        '500':
          description: Erro interno do servidor
          content:
            application/json:
              schema:
                type: object
                properties:
                  sucesso:
                    type: boolean
                  mensagem:
                    type: string
components:
  schemas:
    BMPSPB.Domain.Messaging.API.Interna.Correntista.CnaeResponse:
      type: object
      properties:
        codigo:
          type: string
          format: uuid
        descricao:
          type: string
          nullable: true
        numero:
          type: string
          nullable: true
      additionalProperties: false
  securitySchemes:
    Bearer:
      type: apiKey
      description: Copie 'Bearer ' + token
      name: Authorization
      in: header

````