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

# Discover order fields

> Returns the core and custom field schema for orders.



## OpenAPI

````yaml /openapi.json get /order-fields
openapi: 3.1.0
info:
  title: TitleTrackr Developer API
  version: 1.0.0
  description: Push orders and documents into TitleTrackr.
servers:
  - url: https://api.titletrackr.com/v1
security:
  - bearerAuth: []
paths:
  /order-fields:
    get:
      summary: Discover order fields
      description: Returns the core and custom field schema for orders.
      responses:
        '200':
          description: Field schema
          content:
            application/json:
              schema:
                type: object
                properties:
                  core_fields:
                    type: array
                    items:
                      $ref: '#/components/schemas/Field'
                  custom_fields:
                    type: array
                    items:
                      $ref: '#/components/schemas/Field'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
components:
  schemas:
    Field:
      type: object
      properties:
        key:
          type: string
        label:
          type: string
        type:
          type: string
        required:
          type: boolean
        options:
          type: array
          items:
            type: string
          nullable: true
  responses:
    Unauthorized:
      description: Missing or invalid API key.
    Forbidden:
      description: Key not authorized for the Developer API.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````