Unfortunately, this feature is not supported on mobile devices. For the best experience, please use a computer.

project44 REST API (4.0.0)

Version 4.0.0 of project44's API. If you're not familiar with project44, we recommend checking out our guides first: https://developers.project44.com/guides/shippers and https://developers.project44.com/guides/carriers.

Download OpenAPI description
Languages
Servers
NA - Endpoint for project44 tenants created in the NA region
https://na12.api.project44.com/
EU - Endpoint for project44 tenants created in the EU region
https://eu12.api.project44.com/
Sandbox - Endpoint for project44 tenants created in the sandbox environment
https://na12.api.sandbox.p-44.com/

OAuth 2.0: Client Applications

API used for registering and managing OAuth 2.0 client applications. See the "Authentication" section above for more information. To authorize API requests to project44 for an API integration, first your client application must be registered with project44, which will issue your application a client id and secret. These credentials can then be used to generate bearer tokens, which can be included on all other API requests to authorize your client application. The client application is authorized through the project44 user management UI as a machine user with username "app-{client_id}@client-applications.project44.com".

An admin user (with Movement user role "Customer Admin") must use HTTP Basic Authentication with this API to manage client applications. Basic Authentication is deprecated for all other APIs, besides token generation, in favor of passing the access token generated via OAuth 2.0.

Operations

OAuth 2.0: Token Generation

API for OAuth 2.0 token generation. See the "Authentication" section above for more information. Once your client application is registered, you can use the token generation endpoint to authenticate with your application's client id and secret in exchange for a bearer token to be included on all other API requests to authenticate as that client application. The client application is authorized through the project44 user management UI as a machine user with username "app-{client_id}@client-applications.project44.com".

To generate an access token, you may authenticate your client application by providing its client id and secret either in the body of the request or in the form of HTTP Basic Authentication (but you may not use both ways in the same request).

Operations

Shipment: Tracking

...

Operations

Filter Suggestions

...

Operations

Shipment Attributes

...

Operations

Shipment: Loads

...

Operations

Order Visibility

...

Operations

LTL: Quotes

...

Operations

LTL: Dispatch

...

Operations

LTL: Image Retrieval

...

Operations

LTL: Electronic BOL

API used for creating Electronic BOL

Operations

VLTL: Quotes

...

Operations

VLTL: Dispatch

...

Operations

TL: Available Vehicles

...

Operations

TL: Connected Capacity

...

Operations

Asset Tracking

...

Operations

Multi-Modal: Image Retrieval

...

Operations

Multi-Modal: Rating

API used for multi-modal Rating.

Operations

Multi-Modal: Booking

API used for multi-modal Booking.

Operations

Multi-Modal: Packaging

API used for managing packages for shipment planning.

Operations

Multi-Modal: Document

...

Operations

Webhook

...

Operations

Shipment Webhook Data

Operations to describe the payload expected from project44 when integrated with a webhook for shipments.

Operations

Inventory Order and Load Webhook Data

Operations to describe the payload expected from project44 when integrated with a webhook for orders and loads.

Operations

Example of load webhook payload.

Request

This operation describes the payload for load that our service will send to your webhook endpoint.

Note: The actual webhook URL is defined by you and is not part of our API domain. Please provide your endpoint URL when registering your webhook, along with supported Authentication Methods as described in Webhook Guide.

Ensure that your endpoint is properly configured to handle the payloads and respond with the appropriate HTTP status codes.

Push to webhook is triggered when there is a change in any attribute of a load:
  • Creation, update or deletion of an load

Push to webhook is NOT triggered for any cases that dont modify any load attributes:
  • Change in orders for the load
  • Change in shipment for the load

Path
webhook_endpoint_path_for_loadsstringrequired

Your webhook path specified when creating your webhook configuration in the "url" field: e.g., url = "https://{webhook_base_url}/{webhook_endpoint_path_for_loads}" (Create or update a push configuration.).

Bodyapplication/jsonrequired

JSON payload that will be sent to your webhook endpoint

createdDateTimestring(date-time)

The time when project44 created the event.

dataTypestring

Data type of the payload

Value"Load"
eventIdstring

Unique identifier for the event

eventTypestring

Describes the type of the event

Enum"inventory.v1.load.upserted""inventory.v1.load.deleted"
dataobject(Load)

A collection of goods that are being moved strictly from point A to point B. The collection of goods may contain many orders and many items of inventory and there is a single consignee for the load. The load is tied to a shipment and exactly two stops.

curl -i -X POST \
  'https://{webhook_base_url}/{webhook_endpoint_path_for_loads}' \
  -H 'Content-Type: application/json' \
  -d '{
    "eventId": "a3f7d821-4c6e-4b92-9d15-e8f203a76c41",
    "eventType": "inventory.v1.load.upserted",
    "createdDateTime": "2026-04-06T10:13:22+0000",
    "dataType": "Load",
    "data": {
      "id": "b1e29c4f-83a7-4d05-c7f2-2d4810e59b63",
      "pickupStopReference": {
        "stopId": "c5d3e817-2f94-4a61-b8e0-7c1429d86f52"
      },
      "deliveryStopReference": {
        "stopId": "d8f1a293-6e40-4c78-a5b1-9e3507f24d81"
      },
      "identifiers": [
        {
          "type": "BILL_OF_LADING",
          "value": "BL-2026-0047832"
        }
      ],
      "description": "Electronics shipment - fragile goods",
      "createdDateTime": "2026-04-06T10:13:22+0000",
      "lastModifiedDateTime": "2026-04-06T10:13:22+0000",
      "masterShipmentId": "e2c6b405-9d71-4e83-f3a8-4b7618c93d25",
      "items": [
        {
          "unitQuantity": 2,
          "description": "Electronic Components",
          "identifiers": [
            {
              "type": "STOCK_KEEPING_UNIT",
              "value": "ELEC-COMP-4821"
            },
            {
              "type": "UNIVERSAL_PRODUCT_CODE",
              "value": "012345000891"
            }
          ],
          "orderIdentifierReferences": [
            {
              "orderId": "47b2c914e73d5fa1cc60d8179204b5e320260406512",
              "orderType": "PURCHASE_ORDER",
              "orderIdentifier": "PO-2026-00421"
            }
          ]
        }
      ]
    }
  }'

Responses

OK

Example of order webhook payload.

Request

This operation describes the payload for load that our service will send to your webhook endpoint.

Note: The actual webhook URL is defined by you and is not part of our API domain. Please provide your endpoint URL when registering your webhook, along with supported Authentication Methods as described in Webhook Guide.

Ensure that your endpoint is properly configured to handle the payloads and respond with the appropriate HTTP status codes.

Push to webhook is triggered when there is a change in any attribute of an order:
  • Creation, update or deletion of an order
  • Update in order health or ETA

Push to webhook is NOT triggered for any cases that donot modify any order attributes:
  • Any change in loads for the order
  • Any change in shipment for the order
  • Any change in items for the order

Path
webhook_endpoint_path_for_ordersstringrequired

Your webhook path specified when creating your webhook configuration in the "url" field: e.g., url = "https://{webhook_base_url}/{webhook_endpoint_path_for_orders}" (Create or update a push configuration.).

Bodyapplication/jsonrequired

JSON payload that will be sent to your webhook endpoint

createdDateTimestring(date-time)

The time when project44 created the event.

dataTypestring

Data type of the payload

Value"InventoryOrder"
eventIdstring

Unique identifier for the event

eventTypestring

Describes the type of the event

Enum"inventory.v1.order.upserted""inventory.v1.order.deleted"
dataobject(InventoryOrder)

Inventory Order model that contains attributes that describe different types of orders such as purchase order, sales order, advanced shipment notice, etc.

curl -i -X POST \
  'https://{webhook_base_url}/{webhook_endpoint_path_for_orders}' \
  -H 'Content-Type: application/json' \
  -d '{
    "createdDateTime": "2019-08-24T14:15:22Z",
    "dataType": "InventoryOrder",
    "eventId": "string",
    "eventType": "inventory.v1.order.upserted",
    "data": {
      "additionalOrderIdentifiers": [
        {
          "type": "CONTRACT",
          "value": "string"
        }
      ],
      "attributes": [
        {
          "name": "string",
          "values": [
            "string"
          ]
        }
      ],
      "billToLocation": {
        "address": {
          "addressLines": [
            "string"
          ],
          "city": "string",
          "country": "US",
          "postalCode": "string",
          "state": "string"
        },
        "additionalContacts": [
          {
            "companyName": "string",
            "contactName": "string",
            "email": "string",
            "faxNumber": "string",
            "faxNumberCountryCode": "string",
            "phoneNumber": "string",
            "phoneNumberCountryCode": "string",
            "phoneNumber2": "string",
            "phoneNumber2CountryCode": "string"
          }
        ],
        "contact": {
          "companyName": "string",
          "contactName": "string",
          "email": "string",
          "faxNumber": "string",
          "faxNumberCountryCode": "string",
          "phoneNumber": "string",
          "phoneNumberCountryCode": "string",
          "phoneNumber2": "string",
          "phoneNumber2CountryCode": "string"
        },
        "id": "string",
        "name": "string",
        "suppliedId": "string"
      },
      "createdDate": "2019-08-24",
      "deletedDateTime": "2019-08-24T14:15:22Z",
      "destinationLocation": {
        "address": {
          "addressLines": [
            "string"
          ],
          "city": "string",
          "country": "US",
          "postalCode": "string",
          "state": "string"
        },
        "additionalContacts": [
          {
            "companyName": "string",
            "contactName": "string",
            "email": "string",
            "faxNumber": "string",
            "faxNumberCountryCode": "string",
            "phoneNumber": "string",
            "phoneNumberCountryCode": "string",
            "phoneNumber2": "string",
            "phoneNumber2CountryCode": "string"
          }
        ],
        "contact": {
          "companyName": "string",
          "contactName": "string",
          "email": "string",
          "faxNumber": "string",
          "faxNumberCountryCode": "string",
          "phoneNumber": "string",
          "phoneNumberCountryCode": "string",
          "phoneNumber2": "string",
          "phoneNumber2CountryCode": "string"
        },
        "id": "string",
        "name": "string",
        "suppliedId": "string"
      },
      "derivedOrderHealth": {
        "arrivalStatus": {
          "code": "UNKNOWN",
          "duration": {
            "amount": 0,
            "unit": "UNKNOWN"
          }
        },
        "estimatedTimeOfArrival": "2019-08-24T14:15:22Z"
      },
      "freightTerms": {
        "freightOwnershipType": "PREPAID",
        "transportationPaymentType": "ORIGIN"
      },
      "id": "string",
      "launchDateTime": "2019-08-24T14:15:22Z",
      "orderType": "PURCHASE_ORDER",
      "orderIdentifier": "string",
      "orderIdentifierAuthority": "string",
      "orderTags": [
        {
          "description": "string",
          "type": "ANALYST",
          "value": "string"
        }
      ],
      "orderSubmissionDateTime": "2019-08-24T14:15:22Z",
      "originalDeliveryDateTimeWindow": {
        "endDateTime": "2019-08-24T14:15:22Z",
        "startDateTime": "2019-08-24T14:15:22Z"
      },
      "originLocation": {
        "address": {
          "addressLines": [
            "string"
          ],
          "city": "string",
          "country": "US",
          "postalCode": "string",
          "state": "string"
        },
        "additionalContacts": [
          {
            "companyName": "string",
            "contactName": "string",
            "email": "string",
            "faxNumber": "string",
            "faxNumberCountryCode": "string",
            "phoneNumber": "string",
            "phoneNumberCountryCode": "string",
            "phoneNumber2": "string",
            "phoneNumber2CountryCode": "string"
          }
        ],
        "contact": {
          "companyName": "string",
          "contactName": "string",
          "email": "string",
          "faxNumber": "string",
          "faxNumberCountryCode": "string",
          "phoneNumber": "string",
          "phoneNumberCountryCode": "string",
          "phoneNumber2": "string",
          "phoneNumber2CountryCode": "string"
        },
        "id": "string",
        "name": "string",
        "suppliedId": "string"
      },
      "relatedOrderIds": [
        "string"
      ],
      "subject": "string",
      "statusCode": "SUBMITTED",
      "statusCodeDateTime": "2019-08-24T14:15:22Z",
      "supplierReadyDateTimeWindow": {
        "endDateTime": "2019-08-24T14:15:22Z",
        "startDateTime": "2019-08-24T14:15:22Z"
      },
      "shipmentIds": [
        "497f6eca-6276-4993-bfeb-53cbbbba6f08"
      ],
      "totalCost": {
        "amount": 0,
        "currency": "USD"
      },
      "totalRetailValue": {
        "amount": 0,
        "currency": "USD"
      },
      "vendorLocation": {
        "address": {
          "addressLines": [
            "string"
          ],
          "city": "string",
          "country": "US",
          "postalCode": "string",
          "state": "string"
        },
        "additionalContacts": [
          {
            "companyName": "string",
            "contactName": "string",
            "email": "string",
            "faxNumber": "string",
            "faxNumberCountryCode": "string",
            "phoneNumber": "string",
            "phoneNumberCountryCode": "string",
            "phoneNumber2": "string",
            "phoneNumber2CountryCode": "string"
          }
        ],
        "contact": {
          "companyName": "string",
          "contactName": "string",
          "email": "string",
          "faxNumber": "string",
          "faxNumberCountryCode": "string",
          "phoneNumber": "string",
          "phoneNumberCountryCode": "string",
          "phoneNumber2": "string",
          "phoneNumber2CountryCode": "string"
        },
        "id": "string",
        "name": "string",
        "suppliedId": "string"
      }
    }
  }'

Responses

OK

Capacity Provider Metadata

...

Operations

Capacity Provider Contact Management

...

Operations

Capacity Provider Account Management

...

Operations

Capacity Provider Account Group Management

...

Operations

LTL: Push Tracking

...

Operations

LTL: Push Imaging

...

Operations

TL: Capacity Provider Push

...

Operations

Parcel: Push Tracking

...

Operations

Universal Push: Truckload

...

Operations

Push Updates

...

Operations

Analytics: Port Intelligence

...

Operations

Stop Location Management

...

Operations

Postal Address Validation

...

Operations

Appointments

Create, reschedule, cancel, fetch appointments in Yard Management Systems(YMS)

Operations

Capacity

Get capacity for a YMS site within the specified time range

Operations

Milestones

Update yard milestones for a shipment

Operations

Reason Codes

Retrieve all reason codes for the specified YMS site

Operations

Site Codes

Retrieve all sites for the specified YMS tenant

Operations

Slots

Get available slots for a shipment in Yard Management Systems(YMS)

Operations

Invitations

...

Operations

Ocean: Point-to-Point Schedules

...

Operations

LTL: Tracking

...

Operations

TL: Tracking

...

Operations

TL: Webhook

...

Operations

Parcel: Tracking

...

Operations

Parcel: Webhook

...

Operations

Rail: Tracking

...

Operations

Ocean: Tracking

...

Operations