Skip to main content
GET
/
v2
/
orgs
/
fleets
List Fleets
curl --request GET \
  --url https://api.catenatelematics.com/v2/orgs/fleets \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "address": "1234 Industrial Pkwy",
      "city": "San Francisco",
      "country_code": "USA",
      "created_at": "2025-12-10T08:15:00Z",
      "dba_name": "Swift Logistics",
      "description": "Regional freight carrier specializing in temperature-controlled transport",
      "display_name": "Swift Transport",
      "fleet_ref": "external-system-12345",
      "id": "98765432-10fe-dcba-9876-543210fedcba",
      "legal_name": "Swift Transport LLC",
      "name": "Swift Transport LLC",
      "postal_code": "94107",
      "province": "California",
      "registered_email": "operations@swifttransport.com",
      "registered_fax": "+14155551235",
      "registered_phone": "+14155551234",
      "regulatory_id": "1234567",
      "regulatory_id_date": "2020-03-15",
      "regulatory_id_status": "ACTIVE",
      "regulatory_id_type": "DOT",
      "updated_at": "2025-12-11T14:30:00Z",
      "websites": [
        "https://swifttransport.com",
        "https://swiftlogistics.com"
      ]
    }
  ],
  "total": 1,
  "current_page": "<string>",
  "current_page_backwards": "<string>",
  "previous_page": "<string>",
  "next_page": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.catenatelematics.com/llms.txt

Use this file to discover all available pages before exploring further.

Partners can only list fleets they have active share agreements with

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

fleet_refs
string[] | null

Limit results to specific fleets using your organization's fleet reference identifiers. To specify multiple values, repeat the parameter for each value (e.g., ?fleet_refs=ref1&fleet_refs=ref2).

Maximum array length: 100
cursor
string | null

Cursor for the next page

size
integer
default:300

Page size

Required range: 1 <= x <= 1000

Response

Successful Response

items
FleetRead · object[]
required
total
integer
required
Required range: x >= 0
current_page
string | null

Cursor to refetch the current page

current_page_backwards
string | null

Cursor to refetch the current page starting from the last item

previous_page
string | null

Cursor for the previous page

next_page
string | null

Cursor for the next page