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

# Verify a professional email

> Verify the deliverability and reputation of an email address. Returns a normalized status (valid, accept_all, unknown, invalid) and provider-agnostic signals (smtp, mx, disposable, webmail, gibberish).



## OpenAPI

````yaml /openapi/agnt.openapi.json post /v1/data/agnt/people/email-verifier
openapi: 3.0.0
info:
  title: agntdata Lead APIs
  description: >-
    Internal lead enrichment API surface that orchestrates multiple upstream
    data providers behind a single endpoint per use case. Use these endpoints to
    find and verify professional emails, find mobile phone numbers, enrich and
    search people and companies, discover companies, list a domain's email
    addresses, run bulk people/company enrichments, and fetch company
    intelligence (funding/competitors/technographics). Provider names are never
    returned — agntdata picks the cheapest providers that can fulfill the
    requested fields and merges results.
  version: 1.0.0
  contact:
    name: agntdata
    url: https://agntdata.dev
servers:
  - url: https://api.agntdata.dev
    description: agntdata API
security:
  - ApiKeyAuth: []
tags:
  - name: People — Email
    description: Find, verify, and enrich professional email addresses.
  - name: People — Enrich
    description: Enrich people with structured profile data.
  - name: People — Mobile
    description: Find mobile phone numbers from a profile.
  - name: People — Search
    description: Search the people graph by structured filters.
  - name: Companies — Discover
    description: Discover companies that match a set of criteria.
  - name: Companies — Email
    description: List the email addresses found for a company domain.
  - name: Companies — Enrich
    description: Enrich companies with firmographic data.
  - name: Companies — Search
    description: Search the company graph by structured filters.
  - name: Companies — Intelligence
    description: Funding, competitors, and technographics for a company.
paths:
  /v1/data/agnt/people/email-verifier:
    post:
      tags:
        - People — Email
      summary: Verify a professional email
      description: >-
        Verify the deliverability and reputation of an email address. Returns a
        normalized status (valid, accept_all, unknown, invalid) and
        provider-agnostic signals (smtp, mx, disposable, webmail, gibberish).
      operationId: people_email_verifier
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PeopleEmailVerifierRequest'
            example:
              email: patrick@stripe.com
      responses:
        '200':
          description: Verification result.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Post_agnt_people_email_verifier_Response'
        '400':
          description: Validation error.
        '401':
          description: Unauthorized.
        '402':
          description: Insufficient credits.
      security:
        - ApiKeyAuth: []
components:
  schemas:
    PeopleEmailVerifierRequest:
      type: object
      properties:
        email:
          type: string
          format: email
        max_cost_cents:
          type: number
          minimum: 0
      required:
        - email
      additionalProperties: false
    Post_agnt_people_email_verifier_Response:
      type: object
      required:
        - success
        - data
      properties:
        success:
          type: boolean
          enum:
            - true
        data:
          $ref: '#/components/schemas/PeopleEmailVerifierResponse'
        meta:
          $ref: '#/components/schemas/AgntMeta'
    PeopleEmailVerifierResponse:
      type: object
      properties:
        email:
          type: string
        status:
          type: string
          enum:
            - valid
            - accept_all
            - unknown
            - invalid
        score:
          type: number
          nullable: true
        smtp:
          type: boolean
          nullable: true
        mx:
          type: boolean
          nullable: true
        disposable:
          type: boolean
          nullable: true
        webmail:
          type: boolean
          nullable: true
        gibberish:
          type: boolean
          nullable: true
      required:
        - email
        - status
      additionalProperties: false
    AgntMeta:
      type: object
      properties:
        costCents:
          type: number
        purchasedBalanceCents:
          type: number
        subscriptionRemainingCents:
          type: number
        cached:
          type: boolean
        latencyMs:
          type: number
        priceRange:
          type: object
          properties:
            minCents:
              type: number
            maxCents:
              type: number
          required:
            - minCents
            - maxCents
          additionalProperties: false
        budgetCents:
          type: number
        budgetCentsPerRecord:
          type: number
        providersAttempted:
          type: number
        fieldsReturned:
          type: array
          items:
            type: string
        fieldsMissing:
          type: array
          items:
            type: string
        records:
          type: number
      required:
        - costCents
        - purchasedBalanceCents
        - subscriptionRemainingCents
        - cached
        - latencyMs
      additionalProperties: true
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        Bearer token. Pass your agntdata API key as: Authorization: Bearer
        agnt_live_...

````