> ## Documentation Index
> Fetch the complete documentation index at: https://integrations.truecold.io/llms.txt
> Use this file to discover all available pages before exploring further.

# List available sensors



## OpenAPI

````yaml get /sensor/available
openapi: 3.0.0
info:
  title: TrueCold API
  version: 1.0.0
  description: API documentation for TrueCold application
servers:
  - url: https://api.truecold.io
    description: Production server
security:
  - apiKeyAuth: []
tags:
  - name: Carriers
    description: Carrier management operations
  - name: Shipments
    description: Shipment tracking and management
  - name: Deliveries
    description: Delivery management operations
  - name: Locations
    description: Location management
  - name: Handling Units
    description: Handling unit operations
  - name: Alerts
    description: Alert system management
  - name: Sensors
    description: Sensor management and monitoring
paths:
  /sensor/available:
    get:
      tags:
        - Sensors
      summary: List available sensors
      parameters:
        - in: query
          name: search
          required: false
          schema:
            type: string
          description: Search term to filter results
        - in: query
          name: page
          required: false
          schema:
            type: integer
            minimum: 1
          description: Page number for pagination
        - in: query
          name: pageSize
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 100
          description: Number of items per page
      responses:
        '200':
          description: Successfully retrieved available sensors
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Sensor'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - apiKeyAuth: []
components:
  schemas:
    Sensor:
      type: object
      description: Sensor entity (API response)
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier
        created_at:
          type: string
          format: date-time
          description: Creation timestamp
        updated_at:
          type: string
          format: date-time
          description: Last update timestamp
        provider_id:
          type: string
          format: uuid
          description: Provider ID
        account_id:
          type: string
          format: uuid
          description: Account ID
        name:
          type: string
          description: name name
        serial_number:
          type: string
          description: Serial Number
        model:
          type: string
          description: Model
        last_event_at:
          type: string
          format: date-time
          description: last event timestamp
        available:
          type: boolean
          description: Available
        soft_deleted:
          type: string
          format: date-time
          description: Soft deletion timestamp
        soft_deleted_by:
          type: string
          description: User who soft deleted the record
        site_id:
          type: string
          format: uuid
          description: Site ID
        battery_level:
          type: integer
          description: Battery Level
        offline:
          type: boolean
          description: Offline
        pending_upload_data:
          type: boolean
          description: Pending Upload Data
        simulated:
          type: boolean
          description: Whether the sensor is simulated
          nullable: true
        calibration_date:
          type: string
          format: date-time
          description: Calibration date
          nullable: true
        device_category:
          type: string
          description: Device category
          nullable: true
        target_temperature:
          type: number
          description: Target temperature
          nullable: true
        ai_energy_optimization:
          type: boolean
          description: AI energy optimization enabled
          nullable: true
    Error:
      type: object
      properties:
        message:
          type: string
          description: Error message
          example: An error occurred
        code:
          type: string
          description: Error code
          example: ERROR_CODE
        details:
          type: object
          description: Additional error details (optional)
      required:
        - message
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        API key for authentication. Contact your administrator to get an API
        key.

````