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

# Get conversation fields schema

> Returns the list of all available fields in the conversation details response, along with their data types. Useful for dynamically building integrations or validating field mappings.



## OpenAPI

````yaml /api-reference/specs/integration.yaml get /integrations/schema/conversation-fields
openapi: 3.0.3
info:
  title: Antler Integration API
  version: 1.0.0
  description: API endpoints to retrieve conversation data from Antler.
  x-mint:
    mcp:
      enabled: true
servers:
  - url: https://antler.qode.world/api/v1/
    description: Production
security:
  - apiKeyAuth: []
paths:
  /integrations/schema/conversation-fields:
    get:
      tags:
        - Schema
      summary: Get conversation fields schema
      description: >-
        Returns the list of all available fields in the conversation details
        response, along with their data types. Useful for dynamically building
        integrations or validating field mappings.
      operationId: getConversationFieldsSchema
      responses:
        '200':
          description: Schema retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ConversationFieldSchema'
              example:
                - name: conversation_id
                  type: string
                - name: date
                  type: string
                - name: founder_first_name
                  type: string
                - name: founder_last_name
                  type: string
                - name: founder_name
                  type: string
                - name: founder_email
                  type: string
                - name: founder_role
                  type: string
                - name: founder_linkedin
                  type: string
                - name: cohort
                  type: string
                - name: source
                  type: string
                - name: status
                  type: string
                - name: ps_summary
                  type: string
                - name: cap_table
                  type: string
                - name: pitch_deck
                  type: string
                - name: elevator_pitch
                  type: string
                - name: problem
                  type: string
                - name: solution
                  type: string
                - name: traction
                  type: string
                - name: commercial
                  type: string
                - name: market_size
                  type: string
                - name: why_now
                  type: string
                - name: competition
                  type: string
                - name: why_you
                  type: string
                - name: fundraising_status
                  type: string
                - name: availability
                  type: string
                - name: passport_and_visa
                  type: string
                - name: video_url
                  type: string
                - name: founder_phone
                  type: string
                - name: transcript
                  type: string
                - name: founder_current_location
                  type: string
                - name: co_founders_data
                  type: string
                - name: tokenized_link
                  type: string
                - name: why_antler
                  type: string
      security:
        - apiKeyAuth: []
components:
  schemas:
    ConversationFieldSchema:
      type: object
      properties:
        name:
          type: string
          description: >-
            The snake_case field name as returned in the conversation details
            response
        type:
          type: string
          description: The data type of the field (e.g. "string")
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication

````