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

# The words we use: the house's terms in one locale (locale=en|hi|ta), each with the questions that hang off it

> The words we use: the house's terms in one locale, each with its key, the term, the plain meaning and the questions that hang off it.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/words
openapi: 3.1.0
info:
  title: Truckaurbus API
  version: v1
  description: >-
    The public v1 API at https://api.truckaurbus.com/v1. Authenticate with an
    API key in the Authorization header: Bearer tab_live_...


    Every figure carries its kind and its date. The API never carries the page a
    value came from.
servers:
  - url: https://api.truckaurbus.com
security: []
paths:
  /v1/words:
    get:
      tags:
        - v1
      summary: >-
        The words we use: the house's terms in one locale (locale=en|hi|ta),
        each with the questions that hang off it
      description: >-
        The words we use: the house's terms in one locale, each with its key,
        the term, the plain meaning and the questions that hang off it.
      operationId: identity_api_v1_words
      parameters:
        - in: query
          name: locale
          required: false
          schema:
            default: en
            title: Locale
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GlossaryOut'
          description: OK
components:
  schemas:
    GlossaryOut:
      properties:
        groups:
          items:
            $ref: '#/components/schemas/GlossaryGroupOut'
          title: Groups
          type: array
        locale:
          title: Locale
          type: string
        version:
          title: Version
          type: integer
      required:
        - version
        - locale
        - groups
      title: GlossaryOut
      type: object
    GlossaryGroupOut:
      properties:
        faqs:
          items:
            $ref: '#/components/schemas/GlossaryFaqOut'
          title: Faqs
          type: array
        key:
          title: Key
          type: string
        name:
          title: Name
          type: string
        words:
          items:
            $ref: '#/components/schemas/GlossaryWordOut'
          title: Words
          type: array
      required:
        - key
        - name
        - words
        - faqs
      title: GlossaryGroupOut
      type: object
    GlossaryFaqOut:
      properties:
        a:
          title: A
          type: string
        q:
          title: Q
          type: string
      required:
        - q
        - a
      title: GlossaryFaqOut
      type: object
    GlossaryWordOut:
      properties:
        door:
          default: ''
          title: Door
          type: string
        forms:
          default: []
          items:
            type: string
          title: Forms
          type: array
        group:
          title: Group
          type: string
        key:
          title: Key
          type: string
        tip:
          title: Tip
          type: string
        word:
          title: Word
          type: string
      required:
        - key
        - group
        - word
        - tip
      title: GlossaryWordOut
      type: object

````