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

# Get contact list data fields



## OpenAPI

````yaml get /contacts/task-list-data
openapi: 3.0.0
info:
  title: ClearTalk API
  description: The ClearTalk API Documentation
  version: '1.0'
  contact:
    name: Developer Support
    email: devsupport@cleartalk.ai
servers:
  - url: https://api.cleartalk.ai
    description: ClearTalk AI API Server
security: []
tags: []
paths:
  /contacts/task-list-data:
    get:
      tags:
        - contacts
      summary: Get contact list data fields
      operationId: ContactsController_getContactListData
      parameters: []
      responses:
        '200':
          description: Returns available contact list data fields
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContactListResponseDto'
      security:
        - apiKey: []
components:
  schemas:
    ContactListResponseDto:
      type: object
      properties:
        data:
          description: Array of contact list data
          type: array
          items:
            $ref: '#/components/schemas/ContactListDataDto'
      required:
        - data
    ContactListDataDto:
      type: object
      properties:
        name:
          type: string
          description: Field name from the contact list
        type:
          type: string
          description: Type of the field (GHL, Contact, etc.)
      required:
        - name
        - type
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for authentication

````