> ## 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 tractor and farm machine as CSV, HP as printed, with its price, kind and date

> Every published tractor and farm machine as CSV, UTF-8 with a byte-order mark: the machines export's columns with section field, engine HP and PTO HP as the trade prints them, cylinders, gears, lift capacity in kg, drive, the price with its kind and date, and the page path under /tractors.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/export/tractors.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/tractors.csv:
    get:
      tags:
        - v1
      summary: >-
        Bulk export (business and enterprise keys): every published tractor and
        farm machine as CSV, HP as printed, with its price, kind and date
      description: >-
        Every published tractor and farm machine as CSV, UTF-8 with a byte-order
        mark: the machines export's columns with section field, engine HP and
        PTO HP as the trade prints them, cylinders, gears, lift capacity in kg,
        drive, the price with its kind and date, and the page path under
        /tractors.
      operationId: identity_api_v1_export_tractors
      parameters: []
      responses:
        '200':
          description: CSV of every published tractor and farm machine, HP as printed
          content:
            text/csv:
              schema:
                type: string

````