Track-POD Vehicle API

The Vehicle API from Track-POD — 2 operation(s) for vehicle.

Operations 5

GET /Vehicle/{id} Get vehicle by Track-POD unique identifier #
DELETE /Vehicle/{id} Delete vehicle by Track-POD unique identifier #
GET /Vehicle Get vehicles #
POST /Vehicle Add vehicle #
PUT /Vehicle Update vehicle #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/track-pod-vehicle-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

track-pod-vehicle-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Track-POD Address Vehicle API
  description: 'Track-POD API enables ERP or any other system integration with Track-POD without need for any manual data input. Our API provides an easy HTTP interface to Track-POD functionality through JSON or XML<br><br><b>Endpoint:</b><br>https://api.track-pod.com/<br><br><b>Request headers:</b><br><b>X-API-KEY</b> - API Key. Please find the API key in the Track-POD settings <br><b>Content-Type</b> - (POST/PUT) Request input type: <b>application/json</b> - JSON, <b>application/xml</b> - XML<br><b>Accept</b> - Response output type: <b>application/json</b> - JSON, <b>application/xml</b> - XML <br><b>Accept-Encoding</b> - Response compression: <b>gzip, deflate, br</b><br><br><b>Webhooks:</b><br>Create/Update/Delete route, Create/Update/Delete order, and more <a target=''_blank'' href=''https://track-pod.freshdesk.com/support/solutions/articles/103000049842''>How to use Webhooks?</a>'
  version: '2.0'
servers:
- url: https://api.track-pod.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
security:
- ApiKey: []
tags:
- name: Vehicle
paths:
  /Vehicle/{id}:
    get:
      tags:
      - Vehicle
      summary: Get vehicle by Track-POD unique identifier
      operationId: GetVehicle
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: A vehicle
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/VehicleExtended'
            application/json:
              schema:
                $ref: '#/components/schemas/VehicleExtended'
            text/json:
              schema:
                $ref: '#/components/schemas/VehicleExtended'
            application/xml:
              schema:
                $ref: '#/components/schemas/VehicleExtended'
            text/xml:
              schema:
                $ref: '#/components/schemas/VehicleExtended'
        '401':
          description: Unauthorized. Invalid X-API-KEY in the request header
        '404':
          description: Not found. Vehicle not found
        '429':
          description: Too Many Requests. Rate limit is 20 requests/sec and 400 requests/min
        '500':
          description: Internal Server Error
    delete:
      tags:
      - Vehicle
      summary: Delete vehicle by Track-POD unique identifier
      operationId: DeleteVehicle
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Vehicle was deleted
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ApiResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
            application/xml:
              schema:
                $ref: '#/components/schemas/ApiResponse'
            text/xml:
              schema:
                $ref: '#/components/schemas/ApiResponse'
        '400':
          description: Bad Request.
        '401':
          description: Unauthorized. Invalid X-API-KEY in the request header
        '404':
          description: Not found. Vehicle not found
        '429':
          description: Too Many Requests. Rate limit is 20 requests/sec and 400 requests/min
        '500':
          description: Internal Server Error
  /Vehicle:
    get:
      tags:
      - Vehicle
      summary: Get vehicles
      operationId: GetVehicles
      parameters:
      - name: number
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Vehicles
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/VehicleExtended'
                xml:
                  name: List`1
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/VehicleExtended'
                xml:
                  name: List`1
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/VehicleExtended'
                xml:
                  name: List`1
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/VehicleExtended'
                xml:
                  name: List`1
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/VehicleExtended'
                xml:
                  name: List`1
        '401':
          description: Unauthorized. Invalid X-API-KEY in the request header
        '429':
          description: Too Many Requests. Rate limit is 20 requests/sec and 400 requests/min
        '500':
          description: Internal Server Error
    post:
      tags:
      - Vehicle
      summary: Add vehicle
      operationId: AddVehicle
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NewVehicle'
          application/xml:
            schema:
              $ref: '#/components/schemas/NewVehicle'
      responses:
        '201':
          description: Vehicle was created successfully
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ApiResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
            application/xml:
              schema:
                $ref: '#/components/schemas/ApiResponse'
            text/xml:
              schema:
                $ref: '#/components/schemas/ApiResponse'
        '400':
          description: One or more validation errors
        '401':
          description: Unauthorized. Invalid X-API-KEY in the request header
        '415':
          description: Unsupported Media Type. Invalid Content-Type in the request header. Must be application/json or application/xml
        '429':
          description: Too Many Requests. Rate limit is 20 requests/sec and 400 requests/min
        '500':
          description: Internal Server Error
    put:
      tags:
      - Vehicle
      summary: Update vehicle
      operationId: UpdateVehicle
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateVehicle'
          application/xml:
            schema:
              $ref: '#/components/schemas/UpdateVehicle'
      responses:
        '202':
          description: Vehicle was updated successfully
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ApiResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
            application/xml:
              schema:
                $ref: '#/components/schemas/ApiResponse'
            text/xml:
              schema:
                $ref: '#/components/schemas/ApiResponse'
        '400':
          description: One or more validation errors
        '401':
          description: Unauthorized. Invalid X-API-KEY in the request header
        '404':
          description: Not found. Vehicle not found
        '415':
          description: Unsupported Media Type. Invalid Content-Type in the request header. Must be application/json or application/xml
        '429':
          description: Too Many Requests. Rate limit is 20 requests/sec and 400 requests/min
        '500':
          description: Internal Server Error
components:
  schemas:
    UpdateVehicle:
      type: object
      properties:
        Id:
          type: integer
          description: Track-POD unique identifier
          format: int32
          example: 2341
        Number:
          maxLength: 30
          minLength: 0
          type:
          - string
          - 'null'
          description: "Required (*) \n\nNumber"
          example: XXX777
        CarrierCode:
          maxLength: 255
          minLength: 0
          type:
          - string
          - 'null'
          description: Carrier Code
          example: 31
        Carrier:
          maxLength: 255
          minLength: 0
          type:
          - string
          - 'null'
          description: Carrier
          example: Big Logistics
        Weight:
          maximum: 100000000
          minimum: 0
          type:
          - number
          - 'null'
          description: Capacity Weight
          format: double
          example: 100
        Volume:
          maximum: 100000000
          minimum: 0
          type:
          - number
          - 'null'
          description: Capacity Volume
          format: double
          example: 14.5
        Pallets:
          maximum: 100000000
          minimum: 0
          type:
          - number
          - 'null'
          description: Capacity Pallets
          format: double
          example: 16
        DriverId:
          type:
          - string
          - 'null'
          description: "Required (*) \n\nDriver's Track-POD unique identifier (DriverId or DriverUsername is Required)"
          format: uuid
          example: 00000000-0000-0000-0000-000000000000
        DriverUsername:
          type:
          - string
          - 'null'
          description: "Required (*) \n\nDriver's username (DriverId or DriverUsername is Required)"
          example: MyDriver
        DepotId:
          maxLength: 50
          minLength: 0
          type:
          - string
          - 'null'
          description: "Required (*) \n\nUnique identifier in user accounting system (DepotId or Depot is Required)"
          example: 1
        Depot:
          maxLength: 255
          minLength: 0
          type:
          - string
          - 'null'
          description: "Required (*) \n\nDepot address (DepotId or Depot is Required)"
          example: '9 Riverside, Salford M7 1PA '
        MaxNodes:
          maximum: 200
          minimum: 0
          type:
          - integer
          - 'null'
          description: Maximum number of sites/orders
          format: int32
          example: 5
        MaxWorkTime:
          maximum: 480
          minimum: 0
          type:
          - integer
          - 'null'
          description: Maximum work time, h
          format: int32
          example: 8
        MaxDistance:
          maximum: 10000
          minimum: 0
          type:
          - integer
          - 'null'
          description: Maximum distance, km
          format: int32
          example: 1000
        SpeedRatio:
          type:
          - number
          - 'null'
          description: 'Speed ratio restriction

            (should be grater than 0 and less or equal 2)'
          format: double
          example: 1
        CostPerDistance:
          maximum: 1000000
          minimum: 0
          type:
          - number
          - 'null'
          description: Cost per distance (km)
          format: double
          example: 1.1
        CostPerHour:
          maximum: 1000000
          minimum: 0
          type:
          - number
          - 'null'
          description: Cost per hour
          format: double
          example: 10
        BaseFare:
          maximum: 1000000
          minimum: 0
          type:
          - number
          - 'null'
          description: Base fare
          format: double
          example: 0
        StartTime:
          type:
          - string
          - 'null'
          description: Start time
          format: date-span
          example: 08:00:00
        VehicleType:
          maximum: 2
          minimum: 0
          type:
          - integer
          - 'null'
          description: 'Vehicle type: 0 - Truck/Car, 1 - Motorcycle, 2 - Bicycle'
          format: int32
          example: 1
        EmissionCo2:
          maximum: 50000
          minimum: 0
          type:
          - integer
          - 'null'
          description: Vehicle emission g/km or g/mile
          format: int32
          example: 250
      additionalProperties: false
      xml:
        name: UpdateVehicle
    NewVehicle:
      type: object
      properties:
        Number:
          maxLength: 30
          minLength: 0
          type:
          - string
          - 'null'
          description: "Required (*) \n\nNumber"
          example: XXX777
        CarrierCode:
          maxLength: 255
          minLength: 0
          type:
          - string
          - 'null'
          description: Carrier Code
          example: 31
        Carrier:
          maxLength: 255
          minLength: 0
          type:
          - string
          - 'null'
          description: Carrier
          example: Big Logistics
        Weight:
          maximum: 100000000
          minimum: 0
          type:
          - number
          - 'null'
          description: Capacity Weight
          format: double
          example: 100
        Volume:
          maximum: 100000000
          minimum: 0
          type:
          - number
          - 'null'
          description: Capacity Volume
          format: double
          example: 14.5
        Pallets:
          maximum: 100000000
          minimum: 0
          type:
          - number
          - 'null'
          description: Capacity Pallets
          format: double
          example: 16
        DriverId:
          type:
          - string
          - 'null'
          description: "Required (*) \n\nDriver's Track-POD unique identifier (DriverId or DriverUsername is Required)"
          format: uuid
          example: 00000000-0000-0000-0000-000000000000
        DriverUsername:
          type:
          - string
          - 'null'
          description: "Required (*) \n\nDriver's username (DriverId or DriverUsername is Required)"
          example: MyDriver
        DepotId:
          maxLength: 50
          minLength: 0
          type:
          - string
          - 'null'
          description: "Required (*) \n\nUnique identifier in user accounting system (DepotId or Depot is Required)"
          example: 1
        Depot:
          maxLength: 255
          minLength: 0
          type:
          - string
          - 'null'
          description: "Required (*) \n\nDepot address (DepotId or Depot is Required)"
          example: '9 Riverside, Salford M7 1PA '
        MaxNodes:
          maximum: 200
          minimum: 0
          type:
          - integer
          - 'null'
          description: Maximum number of sites/orders
          format: int32
          example: 5
        MaxWorkTime:
          maximum: 480
          minimum: 0
          type:
          - integer
          - 'null'
          description: Maximum work time, h
          format: int32
          example: 8
        MaxDistance:
          maximum: 10000
          minimum: 0
          type:
          - integer
          - 'null'
          description: Maximum distance, km
          format: int32
          example: 1000
        SpeedRatio:
          type:
          - number
          - 'null'
          description: 'Speed ratio restriction

            (should be grater than 0 and less or equal 2)'
          format: double
          example: 1
        CostPerDistance:
          maximum: 1000000
          minimum: 0
          type:
          - number
          - 'null'
          description: Cost per distance (km)
          format: double
          example: 1.1
        CostPerHour:
          maximum: 1000000
          minimum: 0
          type:
          - number
          - 'null'
          description: Cost per hour
          format: double
          example: 10
        BaseFare:
          maximum: 1000000
          minimum: 0
          type:
          - number
          - 'null'
          description: Base fare
          format: double
          example: 0
        StartTime:
          type:
          - string
          - 'null'
          description: Start time
          format: date-span
          example: 08:00:00
        VehicleType:
          maximum: 2
          minimum: 0
          type:
          - integer
          - 'null'
          description: 'Vehicle type: 0 - Truck/Car, 1 - Motorcycle, 2 - Bicycle'
          format: int32
          example: 1
        EmissionCo2:
          maximum: 50000
          minimum: 0
          type:
          - integer
          - 'null'
          description: Vehicle emission g/km or g/mile
          format: int32
          example: 250
      additionalProperties: false
      description: '"*" - required fields'
      xml:
        name: NewVehicle
    ApiResponse:
      type: object
      properties:
        Status:
          type:
          - integer
          - 'null'
          description: The HTTP status code for the response
          format: int32
        Title:
          type:
          - string
          - 'null'
          description: A short, human-readable summary of the response
        Detail:
          type:
          - string
          - 'null'
          description: A human-readable explanation specific to this response.
      additionalProperties: false
      description: 'Object for all API responses, except GET (status code: 200)'
      xml:
        name: ApiResponse
    VehicleExtended:
      type: object
      properties:
        Id:
          type:
          - integer
          - 'null'
          description: Track-POD unique identifier
          format: int32
          example: 2341
        DriverId:
          type:
          - string
          - 'null'
          description: Driver's Track-POD unique identifier
          format: uuid
          example: 00000000-0000-0000-0000-000000000000
        DriverUsername:
          type:
          - string
          - 'null'
          description: Driver's username
          example: MyDriver
        DepotId:
          type:
          - string
          - 'null'
          description: Unique identifier in user accounting system
          example: 1
        Depot:
          type:
          - string
          - 'null'
          description: Depot address
          example: '9 Riverside, Salford M7 1PA '
        MaxNodes:
          type:
          - integer
          - 'null'
          description: Maximum number of sites/orders
          format: int32
          example: 5
        MaxWorkTime:
          type:
          - integer
          - 'null'
          description: Maximum work time, h
          format: int32
          example: 8
        MaxDistance:
          type:
          - integer
          - 'null'
          description: Maximum distance, km
          format: int32
          example: 1000
        SpeedRatio:
          type:
          - number
          - 'null'
          description: Speed ratio restriction
          format: double
          example: 1
        CostPerDistance:
          type:
          - number
          - 'null'
          description: Cost per distance (km)
          format: double
          example: 1
        CostPerHour:
          type:
          - number
          - 'null'
          description: Cost per hour
          format: double
          example: 10
        BaseFare:
          type:
          - number
          - 'null'
          description: Base fare
          format: double
          example: 0
        StartTime:
          type:
          - string
          - 'null'
          description: Start time
          format: date-span
          example: 08:00:00
        VehicleType:
          type:
          - integer
          - 'null'
          description: 'Vehicle type: 0 - Truck/Car, 1 - Motorcycle, 2 - Bicycle'
          format: int32
          example: 1
        EmissionCo2:
          type:
          - integer
          - 'null'
          description: Vehicle emission g/km or g/mile
          format: int32
          example: 250
        Number:
          maxLength: 30
          minLength: 0
          type:
          - string
          - 'null'
          description: Number
          example: XXX777
        CarrierCode:
          maxLength: 255
          minLength: 0
          type:
          - string
          - 'null'
          description: Carrier Code
          example: 31
        Carrier:
          maxLength: 255
          minLength: 0
          type:
          - string
          - 'null'
          description: Carrier
          example: Big Logistics
        Weight:
          type:
          - number
          - 'null'
          description: Capacity Weight
          format: double
          example: 10000
        Volume:
          type:
          - number
          - 'null'
          description: Capacity Volume
          format: double
          example: 14.5
        Pallets:
          type:
          - number
          - 'null'
          description: Capacity Pallets
          format: double
          example: 16
      additionalProperties: false
      xml:
        name: VehicleExtended
  securitySchemes:
    ApiKey:
      type: apiKey
      description: Please enter API key into field
      name: X-API-KEY
      in: header