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

# Get Verification Data

> Return verification page data for entity.

Public endpoint (no auth) with CORS headers.
Returns extended verification details beyond badge data.

Args:
    entity_id: Entity identifier

Returns:
    VerificationResponse with detailed trust data



## OpenAPI

````yaml /api-reference/openapi.json get /v1/verify/{entity_id}
openapi: 3.1.0
info:
  title: LimitGuard.ai
  description: Trust Intelligence API - Entity verification and risk scoring
  version: 0.1.0
servers:
  - url: https://api.limitguard.ai
security: []
paths:
  /v1/verify/{entity_id}:
    get:
      summary: Get Verification Data
      description: |-
        Return verification page data for entity.

        Public endpoint (no auth) with CORS headers.
        Returns extended verification details beyond badge data.

        Args:
            entity_id: Entity identifier

        Returns:
            VerificationResponse with detailed trust data
      operationId: get_verification_data_v1_verify__entity_id__get
      parameters:
        - name: entity_id
          in: path
          required: true
          schema:
            type: string
            title: Entity Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VerificationResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    VerificationResponse:
      properties:
        entity_id:
          type: string
          title: Entity Id
          description: Entity identifier
        trust_score:
          type: integer
          maximum: 100
          minimum: 0
          title: Trust Score
          description: Trust score 0-100
        trust_level:
          type: string
          title: Trust Level
          description: Trust level (HIGH, MEDIUM, LOW)
        cluster:
          type: string
          title: Cluster
          description: Entity cluster classification
        last_verified:
          type: string
          format: date-time
          title: Last Verified
          description: Last verification timestamp
        sources_checked:
          type: integer
          minimum: 0
          title: Sources Checked
          description: Number of sources verified
        verification_details:
          additionalProperties: true
          type: object
          title: Verification Details
          description: Detailed verification breakdown
        risk_flags:
          items:
            type: string
          type: array
          title: Risk Flags
          description: Active risk indicators
      type: object
      required:
        - entity_id
        - trust_score
        - trust_level
        - cluster
        - last_verified
        - sources_checked
      title: VerificationResponse
      description: Extended verification data returned by /v1/verify/{entity_id} endpoint.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````