AxleHire (Jitsu) Driver Information API

Driver specific calls

Operations 1

POST /v3/shipments/{shipment_id}/tip Tip Driver #

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/axlehire-driver-information-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 email required.

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

OpenAPI Specification

axlehire-driver-information-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jitsu REST Driver Information API
  description: 'The Jitsu API allows clients to submit shipments, retrieve shipment details and labels, track delivery events, and manage the full shipment lifecycle programmatically.


    **Authentication**


    All requests require a token in the `Authorization` header:

    ```

    Authorization: Token YOUR_API_TOKEN

    ```

    Generate your token in the Client Portal under Settings → API Token.


    **Typical Shipment Lifecycle**


    `CREATED` → `GEOCODED` → `ASSIGNED` → `PICKUP_EN_ROUTE` → `PICKED_UP` → `DROPOFF_EN_ROUTE` → `DELIVERED`


    See the [Integration Guide](https://docs.gojitsu.com) for the full lifecycle, webhook events, and error handling reference.


    For questions or integration support, contact [api@gojitsu.com](mailto:api@gojitsu.com).'
  contact:
    name: Jitsu API Support
    email: api@gojitsu.com
    url: https://gojitsu.com
  version: 3.0.0
servers:
- url: https://api.staging.gojitsu.com
  description: Staging
- url: https://api.gojitsu.com
  description: Production
security:
- Authorization: []
tags:
- name: Driver Information
  description: Driver specific calls
paths:
  /v3/shipments/{shipment_id}/tip:
    post:
      summary: Tip Driver
      description: Tip driver for shipment
      operationId: reportTip
      parameters:
      - name: shipment_id
        description: Shipment ID
        in: path
        required: true
        schema:
          $ref: '#/components/schemas/AssignmentId'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Tip'
            examples:
              Example 1:
                value:
                  currency: USD
                  amount: 60.123
                  remark: Quick and efficient
        required: true
      responses:
        default:
          description: default response
          content:
            application/json: {}
        2XX:
          description: default response
          content:
            application/json: {}
      tags:
      - Driver Information
components:
  schemas:
    Tip:
      type: object
      properties:
        id:
          type: integer
          format: int32
        amount:
          type: number
          format: double
        currency:
          type: string
        shipment_id:
          type: integer
          format: int64
        stop_id:
          type: integer
          format: int64
        assignment_id:
          type: integer
          format: int64
        driver_id:
          type: integer
          format: int64
        courier_id:
          type: integer
          format: int64
        remark:
          type: string
        created_ts:
          type: string
          format: date-time
        updated_ts:
          type: string
          format: date-time
        status:
          type: string
        source:
          type: string
        payment_through:
          type: string
        payment_service_id:
          type: string
        service_fee:
          type: number
          format: double
        precalculated_service_fee:
          type: number
          format: double
      description: ''
    AssignmentId:
      title: AssignmentId
      type: integer
      example: 7890
      readOnly: true
      description: Unique identifier for delivery assignment
  securitySchemes:
    Authorization:
      name: Authorization
      type: apiKey
      in: header
      description: '**Authorization header for all calls in format: ''Authorization : Token {YOUR_TOKEN}''**'