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

# Vehicles by the work: the kinds of work in one locale (locale=en|hi|ta), each with the register's count

> An array of the kinds of work, each with its slug, name and lede in the locale (en, hi, ta) and the register's count of vehicles that fit it. The page a figure was read from never leaves through a key: source URLs and verification pages are dropped.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/work
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/work:
    get:
      tags:
        - v1
      summary: >-
        Vehicles by the work: the kinds of work in one locale (locale=en|hi|ta),
        each with the register's count
      description: >-
        An array of the kinds of work, each with its slug, name and lede in the
        locale (en, hi, ta) and the register's count of vehicles that fit it.
        The page a figure was read from never leaves through a key: source URLs
        and verification pages are dropped.
      operationId: identity_api_v1_work
      parameters:
        - in: query
          name: locale
          required: false
          schema:
            default: en
            title: Locale
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/WorkOut'
                title: Response
                type: array
          description: OK
components:
  schemas:
    WorkOut:
      description: >-
        One kind of work, listed: the words in the locale asked for and the
        register's count for its first search.
      properties:
        lede:
          title: Lede
          type: string
        name:
          title: Name
          type: string
        slug:
          title: Slug
          type: string
        title:
          title: Title
          type: string
        total:
          title: Total
          type: integer
      required:
        - slug
        - name
        - title
        - lede
        - total
      title: WorkOut
      type: object

````