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

> Get a single validation provider by ID.

Requires authentication via X-API-Key header.

Args:
    provider_id: Provider UUID
    api_key: Validated API key from header

Returns:
    ProviderRegistration

Raises:
    HTTPException: 404 if provider not found



## OpenAPI

````yaml /api-reference/openapi.json get /v1/providers/{provider_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/providers/{provider_id}:
    get:
      summary: Get Provider
      description: |-
        Get a single validation provider by ID.

        Requires authentication via X-API-Key header.

        Args:
            provider_id: Provider UUID
            api_key: Validated API key from header

        Returns:
            ProviderRegistration

        Raises:
            HTTPException: 404 if provider not found
      operationId: get_provider_v1_providers__provider_id__get
      parameters:
        - name: provider_id
          in: path
          required: true
          schema:
            type: string
            title: Provider Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProviderRegistration'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    ProviderRegistration:
      properties:
        provider_id:
          type: string
          title: Provider Id
          description: Unique provider UUID
        name:
          type: string
          title: Name
          description: Provider name
        endpoint_url:
          type: string
          title: Endpoint Url
          description: Provider API endpoint URL
        supported_checks:
          items:
            type: string
          type: array
          title: Supported Checks
          description: List of validation check types supported
        registered_at:
          type: string
          format: date-time
          title: Registered At
          description: Registration timestamp
        status:
          type: string
          title: Status
          description: Provider status
          default: active
        trust_level:
          type: string
          title: Trust Level
          description: Provider trust level
          default: verified
      type: object
      required:
        - provider_id
        - name
        - endpoint_url
        - supported_checks
        - registered_at
      title: ProviderRegistration
      description: Validation provider registration.
    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
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key

````