> ## 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.

# One term by its key, in one locale

> One term by its key, in one locale.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/words/{key}
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/{key}:
    get:
      tags:
        - v1
      summary: One term by its key, in one locale
      description: One term by its key, in one locale.
      operationId: identity_api_v1_word
      parameters:
        - in: path
          name: key
          required: true
          schema:
            title: Key
            type: string
        - in: query
          name: locale
          required: false
          schema:
            default: en
            title: Locale
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GlossaryWordOut'
          description: OK
components:
  schemas:
    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

````