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

# Verify User

> Verify user information including email and name



## OpenAPI

````yaml POST /api/v1
openapi: 3.1.0
info:
  title: User Verification API
  description: API for verifying user information including email addresses and names
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.vishodi.com/
security:
  - apiKeyHeader: []
paths:
  /api/v1:
    post:
      description: Verify user information including email and name
      requestBody:
        description: User information to verify
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserVerificationRequest'
        required: true
      responses:
        '200':
          description: Successful verification
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserVerificationResponse'
        '400':
          description: Invalid tool name
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error400'
        '401':
          description: Invalid API token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error401'
        '402':
          description: Plan upgrade required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error402'
        '422':
          description: Validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error422'
components:
  schemas:
    UserVerificationRequest:
      type: object
      required:
        - model
      properties:
        model:
          type: string
          description: Model name to use for verification
          default: user_verification
          example: user_verification
        email:
          type: string
          description: Email address to verify
        firstname:
          type: string
          description: First name to verify
        lastname:
          type: string
          description: Last name to verify
    UserVerificationResponse:
      type: object
      properties:
        status:
          type: string
        received_data:
          $ref: '#/components/schemas/UserVerificationRequest'
        request_count:
          type: integer
        email_verification:
          type: object
          properties:
            emailAddress:
              type: string
            disposable:
              type: boolean
            username:
              type: string
            domain:
              type: string
            dnsCheck:
              type: string
            syntexCheck:
              type: string
        name_verification:
          type: object
          properties:
            firstname:
              $ref: '#/components/schemas/NamePrediction'
            lastname:
              $ref: '#/components/schemas/NamePrediction'
    Error400:
      type: object
      properties:
        detail:
          type: string
    Error401:
      type: object
      properties:
        detail:
          type: string
    Error402:
      type: object
      properties:
        detail:
          type: string
    Error422:
      type: object
      properties:
        detail:
          type: array
          items:
            type: object
            properties:
              type:
                type: string
              loc:
                type: array
                items:
                  type: string
              msg:
                type: string
              input:
                type: object
    NamePrediction:
      type: object
      properties:
        value:
          type: string
        prediction:
          type: string
        confidence:
          type: number
  securitySchemes:
    apiKeyHeader:
      type: apiKey
      in: header
      name: X-API-Token

````