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

# Makers with published variants

> Every maker with published variants on the Truckaurbus register: name, slug, whether it is active, and a note when it has ceased.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/manufacturers
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_...
servers:
  - url: https://api.truckaurbus.com
security: []
paths:
  /v1/manufacturers:
    get:
      tags:
        - v1
      summary: Makers with published variants
      description: >-
        Every maker with published variants on the Truckaurbus register: name,
        slug, whether it is active, and a note when it has ceased.
      operationId: identity_api_v1_manufacturers
      parameters: []
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ManufacturerOut'
                title: Response
                type: array
          description: OK
components:
  schemas:
    ManufacturerOut:
      properties:
        classes:
          default: []
          items:
            type: string
          title: Classes
          type: array
        name:
          title: Name
          type: string
        powertrains:
          default: []
          items:
            type: string
          title: Powertrains
          type: array
        slug:
          title: Slug
          type: string
        variant_count:
          title: Variant Count
          type: integer
        is_active:
          default: true
          title: Is Active
          type: boolean
        ceased_note:
          anyOf:
            - type: string
            - type: 'null'
          title: Ceased Note
      required:
        - slug
        - name
        - variant_count
      title: ManufacturerOut
      type: object

````