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

# Emergency directory: mechanics and parts shops near a PIN with their numbers (pin=, km=)

> The emergency directory around a PIN: mechanics, tyre shops and parts shops within km, nearest first, each with its numbers and hours. This door keeps the numbers: it exists for a driver on the roadside.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/breakdown/near
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/breakdown/near:
    get:
      tags:
        - v1
      summary: >-
        Emergency directory: mechanics and parts shops near a PIN with their
        numbers (pin=, km=)
      description: >-
        The emergency directory around a PIN: mechanics, tyre shops and parts
        shops within km, nearest first, each with its numbers and hours. This
        door keeps the numbers: it exists for a driver on the roadside.
      operationId: identity_api_v1_breakdown_near
      parameters:
        - in: query
          name: pin
          required: false
          schema:
            default: ''
            title: Pin
            type: string
        - in: query
          name: km
          required: false
          schema:
            default: 100
            title: Km
            type: number
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties: true
                title: Response
                type: object
          description: OK

````