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

# Status do lote de telefones



## OpenAPI

````yaml /es/validations-api/api-reference/openapi-validations.json get /v1/validations/phone/batch/{jobId}
openapi: 3.0.3
info:
  title: Notifique API — Validaciones (correo, teléfono y CPF)
  description: >-
    Verifica correos, teléfonos y consulta CPF antes del registro o envío — como
    filtrar la lista antes de una campaña. Autentica con `Authorization: Bearer
    sk_live_...` o `x-api-key`. Ámbitos: `validations:email`,
    `validations:phone` y `validations:cpf` (independientes de los canales de
    envío).
  version: 1.0.0
servers:
  - url: https://api.notifique.dev
    description: Produção
security:
  - ntfValBearerAuth: []
  - ntfValApiKeyHeader: []
tags:
  - name: Validación de correo
    description: Verificación inmediata (hasta 10) o lote asíncrono (hasta 10.000).
  - name: Validación de teléfono
    description: >-
      Verificación inmediata (hasta 10) o lote asíncrono (500 a 10.000). Incluye
      WhatsApp en modo `full`.
  - name: Consulta de CPF
    description: >-
      Consulta inmediata (hasta 10) o lote asíncrono (1 a 10.000). Modo `quick`
      (local) o `full` (base oficial del gobierno vía alianza).
paths:
  /v1/validations/phone/batch/{jobId}:
    get:
      tags:
        - Validação de telefone
      summary: Status do lote de telefones
      operationId: ntfVal_getPhoneBatch
      parameters:
        - name: jobId
          in: path
          required: true
          schema:
            type: string
          example: job_phone_xyz789
      responses:
        '200':
          description: Status e resultados (parciais ou finais)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NtfVal_PhoneBatchStatusResponse'
              examples:
                completed:
                  summary: Concluído
                  value:
                    success: true
                    data:
                      job_id: job_phone_xyz789
                      status: completed
                      mode: full
                      processed: 500
                      total: 500
                      results:
                        - phone: '+5511999999999'
                          status: valid
                          phone_valid: true
                          line_type: mobile
                          country_code: BR
                          whatsapp_registered: true
                          reason: null
                          credits_charged: 5
                        - phone: '+5511888000000'
                          status: invalid
                          phone_valid: true
                          line_type: fixed_line
                          country_code: BR
                          whatsapp_registered: false
                          reason: WhatsApp not registered
                          credits_charged: 5
                      error_message: null
                      completed_at: '2026-09-02T11:30:00.000Z'
                      created_at: '2026-09-02T11:00:00.000Z'
        '404':
          description: Job não encontrado
components:
  schemas:
    NtfVal_PhoneBatchStatusResponse:
      type: object
      properties:
        success:
          type: boolean
        data:
          type: object
          properties:
            job_id:
              type: string
            status:
              type: string
              enum:
                - queued
                - processing
                - completed
                - failed
            mode:
              $ref: '#/components/schemas/NtfVal_VerifyMode'
            processed:
              type: integer
            total:
              type: integer
            results:
              type: array
              items:
                $ref: '#/components/schemas/NtfVal_PhoneResultItem'
            error_message:
              type: string
              nullable: true
            completed_at:
              type: string
              format: date-time
              nullable: true
            created_at:
              type: string
              format: date-time
    NtfVal_VerifyMode:
      type: string
      enum:
        - quick
        - full
      default: quick
      description: >-
        `quick` = checagens rápidas (formato, MX ou tipo de linha). `full` =
        quick + verificação profunda (caixa de entrada ou WhatsApp).
    NtfVal_PhoneResultItem:
      type: object
      description: Resultado da verificação de um número.
      properties:
        phone:
          type: string
          description: Número normalizado em E.164.
          example: '+5511999999999'
        status:
          type: string
          enum:
            - valid
            - invalid
            - unknown
            - risky
          description: >-
            `valid` = utilizável; `invalid` = não usar; `unknown` = não
            concluído.
        phone_valid:
          type: boolean
          description: Passou na checagem de formato internacional.
        line_type:
          type: string
          enum:
            - mobile
            - fixed_line
            - voip
          nullable: true
          description: 'Tipo de linha: celular, fixo ou VoIP.'
        country_code:
          type: string
          nullable: true
          description: 'País ISO (ex.: BR, US).'
          example: BR
        whatsapp_registered:
          type: boolean
          nullable: true
          description: '`null` no modo `quick`. `true`/`false` no modo `full`.'
        reason:
          type: string
          nullable: true
          description: Motivo legível quando falha.
          example: WhatsApp not registered
        credits_charged:
          type: integer
          description: Créditos cobrados nesta verificação.
  securitySchemes:
    ntfValBearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
    ntfValApiKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````