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

# Test Connection

> Test endpoint to verify API connectivity and authentication

<Note>
  This API requires authentication. See our [Authentication Guide](/common/authentication) for details.
</Note>

Verify your API connection and authentication credentials.

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST https://api.example.com/api/cs-qa/v1/verify \
    -H "Authorization: YOUR_API_KEY"
  ```

  ```python Python theme={null}
  import requests

  response = requests.post(
      "https://api.example.com/api/cs-qa/v1/verify",
      headers={"Authorization": "YOUR_API_KEY"}
  )
  print(response.json())
  ```

  ```javascript JavaScript theme={null}
  const verifyConnection = async () => {
    const response = await fetch('https://api.example.com/api/cs-qa/v1/verify', {
      method: 'POST',
      headers: {
        'Authorization': 'YOUR_API_KEY'
      }
    });
    return await response.json();
  };
  ```
</RequestExample>


## OpenAPI

````yaml POST /api/cs-qa/v1/verify
openapi: 3.1.0
info:
  title: Freshdesk Quality Assistant API
  description: API for analyzing customer service ticket quality
  version: 1.0.0
servers: []
security:
  - APIKeyHeader: []
paths:
  /api/cs-qa/v1/verify:
    post:
      tags:
        - cs-qa
        - CS QA
      summary: Test Endpoint
      description: |-
        A test endpoint that immediately returns success.
        Used for testing connectivity and authentication.
      operationId: test_endpoint_api_cs_qa_v1_verify_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties:
                  type: string
                type: object
                title: Response Test Endpoint Api Cs Qa V1 Verify Post
        '401':
          description: Invalid or missing API key
          content:
            application/json:
              example:
                detail: Invalid API key
        '422':
          description: Validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationError'
        '429':
          description: Rate limit exceeded
          content:
            application/json:
              example:
                detail: Too many requests. Please try again later.
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorDetail'
              example:
                detail: Internal server error
      security:
        - APIKeyHeader: []
components:
  schemas:
    ValidationError:
      properties:
        detail:
          items:
            type: object
          type: array
          title: Detail
      type: object
      required:
        - detail
      title: ValidationError
      description: Validation error response schema
    ErrorDetail:
      properties:
        detail:
          type: string
          title: Detail
      type: object
      required:
        - detail
      title: ErrorDetail
      description: Standard error response schema
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: Authorization
      description: Enter your API key

````