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

# 🧪 Fleet 360

> Retrieve insurance filings for the fleet linked to the given identifier, ordered by effective date, most recent first. Identify the fleet using exactly one of `fleet_id`, `fleet_ref`, `connection_id`, `vehicle_id`, or `vin`. Optionally bound the results with `from_date`/`to_date`, or set `active_only=true` to restrict to filings with no cancellation date on file. Returns an empty page if the fleet is accessible but not yet linked to a SAFER record.

<Callout icon="vial" color="#FFC107" iconType="solid"><strong>Provisional endpoint</strong><br />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.<br /><br /><em>See <a href="/api-reference/stability-versioning">API Stability & Versioning</a> for details on provisional endpoints.</em></Callout>


## OpenAPI

````yaml https://api.catenatelematics.com/v2/intelligence/openapi.json get /v2/intelligence/fleet-360/insurance-filings
openapi: 3.1.0
info:
  title: Telematics Intelligence Service - REST API
  description: Telematics Intelligence Service REST API.
  version: 0.1.0
servers:
  - url: https://api.catenatelematics.com
    description: Catena Intelligence API
security: []
tags:
  - name: Analytics
    description: >-
      Endpoints providing analytical insights and aggregated data for vehicles,
      fleets, drivers, and trailers.
  - name: Benchmarks
    description: >-
      Endpoints providing cross-fleet benchmark data. A vehicle's metrics are
      ranked against a cohort of peer vehicles drawn from the full Catena fleet
      population. Cohort statistics are k-anonymised: percentile and cohort
      counts are suppressed when the cohort covers too few distinct fleets to
      protect individual fleet privacy.
paths:
  /v2/intelligence/fleet-360/insurance-filings:
    get:
      tags:
        - Fleet 360
      summary: List a fleet's SAFER insurance filings
      description: >-
        Retrieve insurance filings for the fleet linked to the given identifier,
        ordered by effective date, most recent first. Identify the fleet using
        exactly one of `fleet_id`, `fleet_ref`, `connection_id`, `vehicle_id`,
        or `vin`. Optionally bound the results with `from_date`/`to_date`, or
        set `active_only=true` to restrict to filings with no cancellation date
        on file. Returns an empty page if the fleet is accessible but not yet
        linked to a SAFER record.
      operationId: list_fleet_360_insurance_filings
      parameters:
        - name: active_only
          in: query
          required: false
          schema:
            type: boolean
            description: >-
              If true, only include filings with no cancellation_date on file
              (i.e. still in force).
            default: false
            title: Active Only
          description: >-
            If true, only include filings with no cancellation_date on file
            (i.e. still in force).
        - name: fleet_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            description: >-
              Look up the fleet using Catena's fleet ID. *For your own fleet
              identifiers, use `fleet_ref` instead*
            title: Fleet Id
          description: >-
            Look up the fleet using Catena's fleet ID. *For your own fleet
            identifiers, use `fleet_ref` instead*
        - name: fleet_ref
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Look up the fleet using your organization's fleet reference
              identifier.
            title: Fleet Ref
          description: >-
            Look up the fleet using your organization's fleet reference
            identifier.
        - name: connection_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            description: >-
              Look up the fleet using a specific provider connection. This is
              the UUID assigned by Catena when your fleet connects to a TSP.
            title: Connection Id
          description: >-
            Look up the fleet using a specific provider connection. This is the
            UUID assigned by Catena when your fleet connects to a TSP.
        - name: vehicle_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            description: >-
              Look up the fleet that operates this vehicle, using Catena's
              vehicle ID.
            title: Vehicle Id
          description: >-
            Look up the fleet that operates this vehicle, using Catena's vehicle
            ID.
        - name: vin
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Look up the fleet that operates the vehicle with this VIN.
            title: Vin
          description: Look up the fleet that operates the vehicle with this VIN.
        - name: from_date
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date
              - type: 'null'
            description: Return only records on or after this date. **Format:** YYYY-MM-DD
            title: From Date
          description: Return only records on or after this date. **Format:** YYYY-MM-DD
        - name: to_date
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date
              - type: 'null'
            description: Return only records on or before this date. **Format:** YYYY-MM-DD
            title: To Date
          description: Return only records on or before this date. **Format:** YYYY-MM-DD
        - name: cursor
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Cursor for the next page
            title: Cursor
          description: Cursor for the next page
        - name: size
          in: query
          required: false
          schema:
            type: integer
            maximum: 1000
            minimum: 1
            description: Page size
            default: 300
            title: Size
          description: Page size
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/_CursorPage_SaferFleetInsuranceFilingRead_
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequest'
          description: Bad Request
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Unauthorized'
          description: Unauthorized
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Forbidden'
          description: Forbidden
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotFound'
          description: Not Found
        '405':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MethodNotAllowed'
          description: Method Not Allowed
        '409':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Conflict'
          description: Conflict
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnprocessableEntity'
          description: Unprocessable Entity
        '429':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TooManyRequests'
          description: Too Many Requests
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerError'
          description: Internal Server Error
        '501':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NotImplementedResponse'
          description: Not Implemented
      security:
        - Bearer:
            - telematics:read
components:
  schemas:
    _CursorPage_SaferFleetInsuranceFilingRead_:
      properties:
        items:
          items:
            $ref: '#/components/schemas/SaferFleetInsuranceFilingRead'
          type: array
          title: Items
        total:
          type: integer
          minimum: 0
          title: Total
        current_page:
          anyOf:
            - type: string
            - type: 'null'
          title: Current Page
          description: Cursor to refetch the current page
        current_page_backwards:
          anyOf:
            - type: string
            - type: 'null'
          title: Current Page Backwards
          description: Cursor to refetch the current page starting from the last item
        previous_page:
          anyOf:
            - type: string
            - type: 'null'
          title: Previous Page
          description: Cursor for the previous page
        next_page:
          anyOf:
            - type: string
            - type: 'null'
          title: Next Page
          description: Cursor for the next page
      type: object
      required:
        - items
        - total
      title: _CursorPage[SaferFleetInsuranceFilingRead]
    BadRequest:
      properties:
        code:
          type: integer
          title: Code
          default: 400
        message:
          type: string
          title: Message
          default: Bad Request
        detail:
          anyOf:
            - type: string
            - type: 'null'
          title: Detail
      type: object
      title: BadRequest
    Unauthorized:
      properties:
        code:
          type: integer
          title: Code
          default: 401
        message:
          type: string
          title: Message
          default: Unauthorized
        detail:
          anyOf:
            - type: string
            - type: 'null'
          title: Detail
      type: object
      title: Unauthorized
    Forbidden:
      properties:
        code:
          type: integer
          title: Code
          default: 403
        message:
          type: string
          title: Message
          default: Forbidden
        detail:
          anyOf:
            - type: string
            - type: 'null'
          title: Detail
      type: object
      title: Forbidden
    NotFound:
      properties:
        code:
          type: integer
          title: Code
          default: 404
        message:
          type: string
          title: Message
          default: Not Found
        detail:
          anyOf:
            - type: string
            - type: 'null'
          title: Detail
      type: object
      title: NotFound
    MethodNotAllowed:
      properties:
        code:
          type: integer
          title: Code
          default: 405
        message:
          type: string
          title: Message
          default: Method Not Allowed
        detail:
          anyOf:
            - type: string
            - type: 'null'
          title: Detail
      type: object
      title: MethodNotAllowed
    Conflict:
      properties:
        code:
          type: integer
          title: Code
          default: 409
        message:
          type: string
          title: Message
          default: Conflict
        detail:
          anyOf:
            - type: string
            - type: 'null'
          title: Detail
      type: object
      title: Conflict
    UnprocessableEntity:
      properties:
        code:
          type: integer
          title: Code
          default: 422
        message:
          type: string
          title: Message
          default: Invalid Request Body
        detail:
          anyOf:
            - items:
                $ref: '#/components/schemas/ValidationErrorDetail'
              type: array
            - type: 'null'
          title: Detail
      type: object
      title: UnprocessableEntity
    TooManyRequests:
      properties:
        code:
          type: integer
          title: Code
          default: 429
        message:
          type: string
          title: Message
          default: Too Many Requests
        detail:
          anyOf:
            - $ref: '#/components/schemas/RetryAfterDetail'
            - type: 'null'
      type: object
      title: TooManyRequests
    InternalServerError:
      properties:
        message:
          type: string
          title: Message
          default: Internal Server Error
      type: object
      title: InternalServerError
    NotImplementedResponse:
      properties:
        code:
          type: integer
          title: Code
          default: 501
        message:
          type: string
          title: Message
          default: Not Implemented
        detail:
          anyOf:
            - type: string
            - type: 'null'
          title: Detail
      type: object
      title: NotImplementedResponse
    SaferFleetInsuranceFilingRead:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        registry:
          $ref: '#/components/schemas/SaferFleetRegistryEnum'
        authority_number:
          type: string
          title: Authority Number
        fleet_registry_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Fleet Registry Id
        insurance_type:
          anyOf:
            - $ref: '#/components/schemas/InsuranceTypeEnum'
            - type: 'null'
        policy_number:
          anyOf:
            - type: string
            - type: 'null'
          title: Policy Number
        effective_date:
          anyOf:
            - type: string
              format: date
            - type: 'null'
          title: Effective Date
        cancellation_date:
          anyOf:
            - type: string
              format: date
            - type: 'null'
          title: Cancellation Date
        cancellation_method:
          anyOf:
            - $ref: '#/components/schemas/InsuranceCancellationMethodEnum'
            - type: 'null'
        insurer_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Insurer Name
        min_coverage_amount:
          anyOf:
            - type: integer
            - type: 'null'
          title: Min Coverage Amount
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - id
        - registry
        - authority_number
        - created_at
        - updated_at
      title: SaferFleetInsuranceFilingRead
      description: >-
        API read model for an insurance filing record. Excludes the internal
        source_hash dedup key.
    ValidationErrorDetail:
      properties:
        path:
          type: string
          title: Path
        input:
          type: string
          title: Input
        message:
          type: string
          title: Message
        error_type:
          type: string
          title: Error Type
      type: object
      required:
        - path
        - input
        - message
        - error_type
      title: ValidationErrorDetail
    RetryAfterDetail:
      properties:
        retry_after_seconds:
          type: integer
          title: Retry After Seconds
        message:
          type: string
          title: Message
      type: object
      required:
        - retry_after_seconds
        - message
      title: RetryAfterDetail
    SaferFleetRegistryEnum:
      type: string
      enum:
        - fmcsa
      title: SaferFleetRegistryEnum
      description: Registry/authority that maintains the carrier record
    InsuranceTypeEnum:
      type: string
      enum:
        - bipd
        - cargo
        - surety
      title: InsuranceTypeEnum
      description: Type of insurance coverage filed with the registry
    InsuranceCancellationMethodEnum:
      type: string
      enum:
        - cancel
        - term_repl
        - term_cancl
      title: InsuranceCancellationMethodEnum
      description: How an insurance policy was terminated
  securitySchemes:
    Bearer:
      type: oauth2
      flows:
        clientCredentials:
          refreshUrl: >-
            https://auth.catenatelematics.com/realms/catena/protocol/openid-connect/token
          scopes: {}
          tokenUrl: >-
            https://auth.catenatelematics.com/realms/catena/protocol/openid-connect/token
        authorizationCode:
          refreshUrl: >-
            https://auth.catenatelematics.com/realms/catena/protocol/openid-connect/token
          scopes: {}
          authorizationUrl: >-
            https://auth.catenatelematics.com/realms/catena/protocol/openid-connect/auth
          tokenUrl: >-
            https://auth.catenatelematics.com/realms/catena/protocol/openid-connect/token

````