Skip to main content
GET
/
v2
/
intelligence
/
fleet-360
/
profile
Get a fleet's combined telematics + SAFER profile
curl --request GET \
  --url https://api.catenatelematics.com/v2/intelligence/fleet-360/profile \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.catenatelematics.com/v2/intelligence/fleet-360/profile"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.catenatelematics.com/v2/intelligence/fleet-360/profile', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.catenatelematics.com/v2/intelligence/fleet-360/profile"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
require 'uri'
require 'net/http'

url = URI("https://api.catenatelematics.com/v2/intelligence/fleet-360/profile")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
HttpResponse<String> response = Unirest.get("https://api.catenatelematics.com/v2/intelligence/fleet-360/profile")
.header("Authorization", "Bearer <token>")
.asString();
using RestSharp;


var options = new RestClientOptions("https://api.catenatelematics.com/v2/intelligence/fleet-360/profile");
var client = new RestClient(options);
var request = new RestRequest("");
request.AddHeader("Authorization", "Bearer <token>");
var response = await client.GetAsync(request);

Console.WriteLine("{0}", response.Content);
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.catenatelematics.com/v2/intelligence/fleet-360/profile",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
{
  "connection_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "tsp_vehicle_count": 123,
  "fleet_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "fleet_ref": "<string>",
  "dot_number": "<string>",
  "fleet_info": {
    "fleet_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "connection_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "source_id": "<string>",
    "source_data_hash": "<string>",
    "fleet_ref": "<string>",
    "deleted_at": "2023-11-07T05:31:56Z",
    "tsp_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "tsp_slug": "<string>",
    "source_data": {},
    "occurred_at": "2023-11-07T05:31:56Z",
    "execution_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "schedule_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "extras": {},
    "carrier_name": "<string>",
    "dot_number": "<string>",
    "dba_name": "<string>",
    "street": "<string>",
    "city": "<string>",
    "state": "<string>",
    "zip": "<string>",
    "country": "<string>",
    "phone_number": "<string>",
    "company_url": "<string>",
    "timezone": "<string>"
  },
  "safer": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "registry": "fmcsa",
    "registry_id": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "legal_name": "<string>",
    "dba_name": "<string>",
    "address": "<string>",
    "city": "<string>",
    "state": "<string>",
    "postal_code": "<string>",
    "country": "<string>",
    "phone": "<string>",
    "email": "<string>",
    "power_units": 123,
    "total_drivers": 123,
    "safety_rating_date": "2023-12-25"
  },
  "fmcsa_power_units": 123
}
{
"code": 400,
"message": "Bad Request",
"detail": "<string>"
}
{
"code": 401,
"message": "Unauthorized",
"detail": "<string>"
}
{
"code": 403,
"message": "Forbidden",
"detail": "<string>"
}
{
"code": 404,
"message": "Not Found",
"detail": "<string>"
}
{
"code": 405,
"message": "Method Not Allowed",
"detail": "<string>"
}
{
"code": 409,
"message": "Conflict",
"detail": "<string>"
}
{
"code": 422,
"message": "Invalid Request Body",
"detail": [
{
"path": "<string>",
"input": "<string>",
"message": "<string>",
"error_type": "<string>"
}
]
}
{
"code": 429,
"message": "Too Many Requests",
"detail": {
"retry_after_seconds": 123,
"message": "<string>"
}
}
{
"message": "Internal Server Error"
}
{
"code": 501,
"message": "Not Implemented",
"detail": "<string>"
}
Provisional endpoint
This endpoint is available for early access. The core schema is stable, but minor details โ€” such as field names or added fields โ€” may change before it becomes generally available. Backward compatibility is not guaranteed.

See API Stability & Versioning for details on provisional endpoints.

Authorizations

Authorization
string
header
required

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

Query Parameters

fleet_id
string<uuid> | null

Look up the fleet using Catena's fleet ID. For your own fleet identifiers, use fleet_ref instead

fleet_ref
string | null

Look up the fleet using your organization's fleet reference identifier.

connection_id
string<uuid> | null

Look up the fleet using a specific provider connection. This is the UUID assigned by Catena when your fleet connects to a TSP.

Response

Successful Response

Combined telematics + SAFER/FMCSA profile for a single fleet.

dot_number/safer are null when the fleet has not yet been linked to a SAFER record (no fleet_info.dot_number on file, or no matching FMCSA record found).

connection_id
string<uuid>
required

Provider connection this profile was resolved through.

tsp_vehicle_count
integer
required

Count of vehicles ingested from this fleet's connected TSPs.

fleet_id
string<uuid> | null

Internal fleet identifier.

fleet_ref
string | null

External fleet reference in the partner system.

dot_number
string | null

USDOT number linked to this fleet, if known.

fleet_info
FleetInfoRead ยท object | null

Fleet-level company/contact info as reported by the TSP.

safer
SaferFleetRead ยท object | null

FMCSA/SAFER registry record for this fleet's DOT number, if linked.

fmcsa_power_units
integer | null

FMCSA-self-reported power unit count for this carrier (mirrors safer.power_units), for direct comparison against tsp_vehicle_count.