> ## 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.

# 45 - Consultar Dados

Em caso de perda do evento de webhook, é possível consultar os dados de uma análise específica.

Para executar a consulta é necessário o token gerado quando o link é criado pelo Onboarding ou pelo FaceAuthenticator. Sem esse token a consulta não pode ser realizada.

O retorno inclui os links das imagens enviadas pelo cliente selfie, frente e verso do documento cujo prazo de validade é de 1 hora; após esse período os links expiram.

<Expandable title="Exemplo de retorno completo">
  O exemplo de retorno, mostrado no lado direito desta tela, está resumido. Na linha `"json": "<string>"` o retorno do Bureau vem de forma serializada, sendo necessário deserializar para melhor visualização. Aqui está um exemplo do retorno deserializado que vem no campo `"json":`.

  ```json theme={null}
  {
      "Tecnologia": 0,
      "Data": {
          "RequestId": "String",
          "Id": "String",
          "Status": "String",
          "CustomStatus": "String",
          "Type": "String",
          "CreatedAt": "Date",
          "Sections": {
              "Ocr": {
                  "Name": "String",
                  "FirstDriverLicenseDate": "String",
                  "BirthDate": "String",
                  "BirthPlace": "String",
                  "IssueDate": "String",
                  "ExpirationDate": "String",
                  "Acc": "String",
                  "Rg": "String",
                  "RgIssuingAuthority": "String",
                  "RgIssueState": "String",
                  "Cpf": "String",
                  "RegistrationNumber": "String",
                  "Category": "String",
                  "Nationality": "String",
                  "FatherName": "String",
                  "MotherName": "String",
                  "MirrorNumber": "String",
                  "Notes": "String",
                  "PlaceOfIssue": "String",
                  "SecurityNumber": "String",
                  "RenachNumber": "String"
              },
              "Cpf": {
                  "StatusCode": "String",
                  "RegistrationStatusCode": "String",
                  "RegistrationStatusMessage": "String",
                  "Name": "String",
                  "BirthDate": "String",
                  "IssueDate": "String",
                  "DeathYear": "String",
                  "DeathMessage": "String"
              },
              "Facematch": {
                  "StatusCode": "String",
                  "Confidence": Numero,
                  "Identical": "String"
              },
              "OfficialData": {
                  "Code": "String",
                  "Confidence": Numero,
                  "Probability": "String"
              }
          },
          "StatusReasons": [
              {
                  "Category": "String",
                  "Description": "String",
                  "ResultStatus": "String",
                  "ResultCustomStatus": "String",
                  "Code": "String",
                  "Status": "String",
                  "ManualReprovalReasons": "String"
              }

          ],
          "Images": {
              "Back": "String",
              "Front": "String",
              "Selfie": "String",
              "SelectedFront": "String",
              "SelectedBack": "String"
          },
          "Attributes": {
              "Name": "String",
              "Cpf": "String",
              "BirthDate": "String",
              "AcceptedTermsData": [
                  {
                      "Name": "String",
                      "Datetime": "Date",
                      "UserIp": "String",
                      "UserAgent": "String"
                  }
              ]
          },
          "AcceptedTermsData": "String",
          "Address": "String",
          "Relationships": "String",
          "RelatedTransactions": "String",
          "Files": "String"
      }
  }
  ```
</Expandable>


## OpenAPI

````yaml post /Bureau/ConsultaCAFDados
openapi: 3.0.1
info:
  title: BMPDigitalCore.ApiExterna.Bureau.API
  version: '1.0'
servers:
  - url: https://api.bmpdigital.moneyp.dev.br/
    description: Localhost
security:
  - Bearer: []
paths: {}
components:
  securitySchemes:
    Bearer:
      type: apiKey
      description: Informe o token
      name: Authorization
      in: header

````