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

# Get Connector Validation

> Retrieve the status of a connector validation started via the source `revalidate` endpoint. Poll this until `status` is `success` or `failed`.



## OpenAPI

````yaml GET /api/v1/connector-validations/{id}/
openapi: 3.0.3
info:
  title: Nekt API
  version: v1
  description: Nekt API Documentation
  contact:
    email: support@nekt.ai
servers:
  - url: https://api.nekt.ai
security: []
paths:
  /api/v1/connector-validations/{id}/:
    get:
      tags:
        - v1
      summary: Get connector validation status
      description: >-
        Retrieve the status of a connector validation started via the source
        `revalidate` endpoint. Poll this until `status` is `success` or
        `failed`.
      operationId: v1_connector_validations_retrieve
      parameters:
        - in: path
          name: id
          schema:
            type: string
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConnectorValidation'
          description: ''
      security:
        - ApiKeyAuth: []
components:
  schemas:
    ConnectorValidation:
      type: object
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
        created_at:
          type: string
          format: date-time
          readOnly: true
        updated_at:
          type: string
          format: date-time
          readOnly: true
        status:
          $ref: '#/components/schemas/ConnectorValidationStatusEnum'
        streams:
          nullable: true
        error_message:
          type: string
          nullable: true
        parsed_error:
          type: string
          nullable: true
        started_at:
          type: string
          format: date-time
          nullable: true
        ended_at:
          type: string
          format: date-time
          nullable: true
        connector_version:
          type: string
          readOnly: true
          description: Connector version for this validation (Expandable)
      required:
        - connector_version
        - created_at
        - id
        - updated_at
    ConnectorValidationStatusEnum:
      enum:
        - in_progress
        - success
        - failed
      type: string
      description: |-
        * `in_progress` - IN_PROGRESS
        * `success` - SUCCESS
        * `failed` - FAILED
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: 'API Key authentication. Format: ''x-api-key: api_key'''

````