Skip to main content
GET
/
v2
/
orgs
/
fleets
/
{fleet_id}
Get Fleet
curl --request GET \
  --url https://api.catenatelematics.com/v2/orgs/fleets/{fleet_id} \
  --header 'Authorization: Bearer <token>'
{
  "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"
  ]
}

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 get 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.

Path Parameters

fleet_id
string<uuid>
required

Response

Successful Response

API model for reading a fleet

Contains all fleet information including system-generated fields. Partners can only read fleets they invited or have share agreements with.

name
string
required
fleet_ref
string
required

An optional reference for the fleet. Used to store an external identifier for the fleet in your system.

id
string<uuid>
required

Unique Catena fleet identifier

created_at
string<date-time>
required

When the fleet was created

updated_at
string<date-time>
required

Last modification timestamp

description
string | null

A description of the fleet

display_name
string | null
dba_name
string | null
websites
string<uri>[] | null

List of websites associated with the fleet. The website is used to map users to an organization based on their email domain and to authenticate them accordingly in the scope of the organization.

Required string length: 1 - 2083
invitation_id
string<uuid> | null

ID of the invitation that was used to onboard the fleet

regulatory_id
string | null

Primary identifier from a regulatory body for a fleet (like DOT Number).

regulatory_id_type
string | null

Type of the regulatory ID like DOT, EASA, etc.

regulatory_id_date
string<date> | null

Date when the regulatory ID was issued.

regulatory_id_status
string | null

Status of the regulatory ID.

registered_email
string<email> | null

Email address that is registered for the fleet.

registered_phone
string<phone> | null

Phone number that is registered for the fleet.

registered_fax
string<phone> | null

Fax number that is registered for the fleet.

address
string | null

Physical address that is registered for the fleet.

city
string | null

City that is registered for the fleet.

province
string | null

Province that is registered for the fleet.

postal_code
string | null

Postal code that is registered for the fleet.

country_code
string | null

ISO-3 Country code that is registered for the fleet.

Pattern: ^\w{3}$