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

# Verificar existência de chave Pix

> Verifica em lote se cada chave Pix informada existe no diretório DICT (até 200 chaves por requisição).



## OpenAPI

````yaml pt/openapi/v3-current/pix.yaml POST /v1/entries/verification
openapi: 3.0.3
info:
  title: Plugin BR Pix Direct - API Completa
  description: >
    API completa para o sistema de pagamentos instantaneos PIX brasileiro,
    incluindo

    operacoes de dicionario de chaves PIX, geracao/decodificacao de QR codes,
    transacoes e

    limites de transacao.
  version: 1.0.0
servers:
  - url: https://plugin-pix-direct.api.lerian.net
  - url: https://plugin-pix-direct-qrcode.api.lerian.net
security:
  - bearerAuth: []
paths:
  /v1/entries/verification:
    post:
      tags:
        - Key DICT API
      summary: Verificar existência de chave Pix
      description: >-
        Verifica em lote se cada chave Pix informada existe no diretório DICT
        (até 200 chaves por requisição).
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VerifyEntriesBody'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VerifyEntriesResponse'
          description: OK
        default:
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Detail'
          description: Erro
components:
  schemas:
    VerifyEntriesBody:
      additionalProperties: false
      properties:
        accountId:
          description: >-
            O id da conta no CRM do chamador (resolve o ISPB do lado do
            servidor).
          type: string
        keys:
          description: As chaves Pix cuja existência no DICT verificar (1..200).
          items:
            type: string
          maxItems: 200
          minItems: 1
          type: array
      required:
        - accountId
        - keys
      type: object
    VerifyEntriesResponse:
      additionalProperties: false
      properties:
        correlationId:
          description: Id de correlação do suporte DICT.
          type: string
        jdpiReturnedAt:
          description: Quando o DICT retornou a verificação (RFC3339).
          type: string
        keys:
          description: Os resultados de existência por chave.
          items:
            $ref: '#/components/schemas/VerifiedKeyView'
          type: array
          nullable: true
      required:
        - keys
      type: object
    Detail:
      additionalProperties: false
      properties:
        code:
          description: >-
            Código de erro de domínio estável e legível por máquina, escopado ao
            serviço emissor (formato: <SERVICE>-NNNN).
          type: string
        detail:
          description: Uma explicação legível específica desta ocorrência do problema.
          type: string
        errors:
          description: Lista opcional de detalhes individuais de erro
          items:
            $ref: '#/components/schemas/ErrorDetail'
          type: array
          nullable: true
        instance:
          description: >-
            Uma referência URI que identifica a ocorrência específica do
            problema.
          format: uri
          type: string
        status:
          description: Código de status HTTP
          format: int64
          type: integer
        title:
          description: >-
            Um resumo curto e legível do tipo de problema. Este valor não deve
            mudar entre ocorrências do erro.
          type: string
        type:
          default: about:blank
          description: Uma referência URI para a documentação legível do erro.
          format: uri
          type: string
      type: object
    VerifiedKeyView:
      additionalProperties: false
      properties:
        exists:
          description: Se a chave existe no DICT.
          type: boolean
        key:
          description: O valor da chave Pix.
          type: string
      required:
        - key
        - exists
      type: object
    ErrorDetail:
      additionalProperties: false
      properties:
        location:
          description: Onde o erro ocorreu, ex. 'body.items[3].tags' ou 'path.thing-id'
          type: string
        message:
          description: Texto da mensagem de erro
          type: string
        value:
          description: O valor no local informado
      type: object
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >
        Autenticacao por token JWT Bearer. Obtenha o token no endpoint
        `/v1/login/oauth/access_token`

        usando credenciais do cliente (clientId e clientSecret).


        Inclua o token no header Authorization:

        `Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...`


        O token expira apos 3600 segundos (1 hora).

````