---
title: "List Load Events"
method: GET
path: "/api/v2/loads/{load_id}/events"
tags: ["Loads"]
---

# List Load Events

`GET /api/v2/loads/{load_id}/events`

Provides a list of the events (rejected, accepted, etc) regarding a load previously tendered to Loadsmart.

This is an alternative way to obtain feedback whether a tendered load was accepted or rejected (you can also receive load events by Webhooks - see [Load Webhooks](#tag/Webhooks/paths/~1load-webhooks/post) section).
The List Load Events endpoint was designed to be polled, so you don't need to expose an endpoint where Loadsmart would send the accepted/rejected webhook.

Although loads and shipments usually refer to the same thing, Loadsmart handles them as two slightly different entities.
Up to the point when a load is tendered and booked, the entity in play is a “load”.
After this load is booked, it becomes a shipment. From this point on, communication is done with the shipment.

List of event types/actions:
  - awarded
  - accepted
  - canceled
  - rejected

## Response `200`

Load was found

- object
  - `count` number — Number of objects found
  - `next` string, url — URL for next page of results
  - `previous` string, url — URL for previous page of results
  - `data` object[]
    - `id` string, uuid — Load event unique identifier
    - `action` string — Event type
    - `created` string, date-time — The date and time of the event creation
    - `load_id` string, uuid — Load unique identifier

## Other responses

- `404` — Load was not found

---

[API](https://skmtc.dev/loadsmart/apis/loadsmart-api.md) · [All operations](https://skmtc.dev/loadsmart/apis/loadsmart-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/loadsmart/loadsmart-api/revisions/6021c5806fe9/schema)
