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

# Bulk export (business and enterprise keys): every published construction machine as CSV, with its price, kind and date

> Every published construction machine as CSV, UTF-8 with a byte-order mark: maker, machine, slug, class, kind, family, power source, engine, the sixteen plate figures, lifecycle, launch date, the best price with its kind, source kind, state and date, the verification date and the page path. Business and enterprise keys.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/export/machines.csv
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/export/machines.csv:
    get:
      tags:
        - v1
      summary: >-
        Bulk export (business and enterprise keys): every published construction
        machine as CSV, with its price, kind and date
      description: >-
        Every published construction machine as CSV, UTF-8 with a byte-order
        mark: maker, machine, slug, class, kind, family, power source, engine,
        the sixteen plate figures, lifecycle, launch date, the best price with
        its kind, source kind, state and date, the verification date and the
        page path. Business and enterprise keys.
      operationId: identity_api_v1_export_machines
      parameters: []
      responses:
        '200':
          description: CSV of every published construction machine
          content:
            text/csv:
              schema:
                type: string

````