> ## 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 kind of work: the operating envelope in one locale and the register's matching vehicles ranked (limit=)

> One kind of work: its operating envelope (payload, body, axle, the roads it runs) in the locale and the register's matching variants ranked, up to limit. 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/{slug}
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/{slug}:
    get:
      tags:
        - v1
      summary: >-
        One kind of work: the operating envelope in one locale and the
        register's matching vehicles ranked (limit=)
      description: >-
        One kind of work: its operating envelope (payload, body, axle, the roads
        it runs) in the locale and the register's matching variants ranked, up
        to limit. The page a figure was read from never leaves through a key:
        source URLs and verification pages are dropped.
      operationId: identity_api_v1_work_one
      parameters:
        - in: path
          name: slug
          required: true
          schema:
            title: Slug
            type: string
        - in: query
          name: locale
          required: false
          schema:
            default: en
            title: Locale
            type: string
        - in: query
          name: limit
          required: false
          schema:
            default: 6
            title: Limit
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkDetailOut'
          description: OK
components:
  schemas:
    WorkDetailOut:
      description: >-
        The page: the envelope's eight cells with their labels, the checks, the
        guides, the need finder's answers, the

        listing's query string and the register's matching vehicles, ranked.
      properties:
        cells:
          additionalProperties:
            $ref: '#/components/schemas/WorkCellOut'
          title: Cells
          type: object
        checks:
          items:
            type: string
          title: Checks
          type: array
        finder:
          additionalProperties:
            type: string
          title: Finder
          type: object
        guides:
          items:
            $ref: '#/components/schemas/WorkGuideOut'
          title: Guides
          type: array
        labels:
          additionalProperties:
            type: string
          title: Labels
          type: object
        lede:
          title: Lede
          type: string
        listing_query:
          title: Listing Query
          type: string
        name:
          title: Name
          type: string
        slug:
          title: Slug
          type: string
        title:
          title: Title
          type: string
        total:
          title: Total
          type: integer
        vehicles:
          items:
            $ref: '#/components/schemas/VariantSummaryOut'
          title: Vehicles
          type: array
      required:
        - slug
        - name
        - title
        - lede
        - total
        - labels
        - cells
        - checks
        - guides
        - finder
        - listing_query
        - vehicles
      title: WorkDetailOut
      type: object
    WorkCellOut:
      properties:
        'n':
          title: 'N'
          type: string
        v:
          title: V
          type: string
      required:
        - v
        - 'n'
      title: WorkCellOut
      type: object
    WorkGuideOut:
      properties:
        p:
          title: P
          type: string
        slug:
          title: Slug
          type: string
        t:
          title: T
          type: string
      required:
        - slug
        - t
        - p
      title: WorkGuideOut
      type: object
    VariantSummaryOut:
      properties:
        archive_price_inr:
          anyOf:
            - type: integer
            - type: 'null'
          title: Archive Price Inr
        archive_price_year:
          anyOf:
            - type: integer
            - type: 'null'
          title: Archive Price Year
        axle_config:
          anyOf:
            - type: string
            - type: 'null'
          title: Axle Config
        battery_ah:
          anyOf:
            - type: integer
            - type: 'null'
          title: Battery Ah
        battery_volts:
          anyOf:
            - type: integer
            - type: 'null'
          title: Battery Volts
        body_types:
          items:
            type: string
          title: Body Types
          type: array
        fuel:
          anyOf:
            - type: string
            - type: 'null'
          title: Fuel
        gvw_kg:
          anyOf:
            - type: integer
            - type: 'null'
          title: Gvw Kg
        id:
          title: Id
          type: integer
        image:
          anyOf:
            - type: string
            - type: 'null'
          title: Image
        is_sample:
          default: false
          title: Is Sample
          type: boolean
        launched_at:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Launched At
        lifecycle:
          title: Lifecycle
          type: string
        manufacturer:
          $ref: '#/components/schemas/RefOut'
        model:
          $ref: '#/components/schemas/RefOut'
        name:
          title: Name
          type: string
        payload_kg:
          anyOf:
            - type: integer
            - type: 'null'
          title: Payload Kg
        power_hp:
          anyOf:
            - type: integer
            - type: 'null'
          title: Power Hp
        price_as_of:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Price As Of
        price_from_inr:
          anyOf:
            - type: integer
            - type: 'null'
          title: Price From Inr
        price_kind:
          anyOf:
            - type: string
            - type: 'null'
          title: Price Kind
        price_state:
          anyOf:
            - type: string
            - type: 'null'
          title: Price State
        price_to_inr:
          anyOf:
            - type: integer
            - type: 'null'
          title: Price To Inr
        published_at:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Published At
        segment:
          anyOf:
            - type: string
            - type: 'null'
          title: Segment
        slug:
          title: Slug
          type: string
        torque_nm:
          anyOf:
            - type: integer
            - type: 'null'
          title: Torque Nm
        tyre_size:
          anyOf:
            - type: string
            - type: 'null'
          title: Tyre Size
        tyres_count:
          anyOf:
            - type: integer
            - type: 'null'
          title: Tyres Count
        vehicle_class:
          title: Vehicle Class
          type: string
        verified_at:
          anyOf:
            - format: date
              type: string
            - type: 'null'
          title: Verified At
      required:
        - id
        - slug
        - name
        - manufacturer
        - model
        - vehicle_class
        - body_types
        - lifecycle
      title: VariantSummaryOut
      type: object
    RefOut:
      properties:
        name:
          title: Name
          type: string
        slug:
          title: Slug
          type: string
      required:
        - slug
        - name
      title: RefOut
      type: object

````