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

# Get monitoring data points aggregated to 1-minute intervals.

> Retrieves monitoring data points aggregated to 1-minute intervals. Returns all

Note: Requests that would return responses larger than 10MB will fail. Consider



## OpenAPI

````yaml https://api.trlyr.com/monitoring/docs/doc.json get /{physicalAssetID}/datapoints/1min
openapi: 3.1.0
info:
  description: ''
  title: terralayr Monitoring API
  version: 1.0.0
servers:
  - description: Production API
    url: https://api.trlyr.com
  - description: Sandbox API
    url: https://api.sandbox.trlyr.com
security: []
externalDocs:
  description: ''
  url: ''
paths:
  /{physicalAssetID}/datapoints/1min:
    get:
      tags:
        - monitoring
      summary: Get monitoring data points aggregated to 1-minute intervals.
      description: >-
        Retrieves monitoring data points aggregated to 1-minute intervals.
        Returns all


        Note: Requests that would return responses larger than 10MB will fail.
        Consider
      parameters:
        - description: Access token
          in: header
          name: Authorization
          required: true
          schema:
            default: Bearer <access token value>
            type: string
        - description: Physical Asset ID
          in: path
          name: physicalAssetID
          required: true
          schema:
            type: string
        - description: Query start time (RFC3339)
          in: query
          name: start
          required: true
          schema:
            type: string
        - description: Query end time (RFC3339)
          in: query
          name: end
          required: true
          schema:
            type: string
        - description: Comma-separated list of data point names
          in: query
          name: datapoints
          required: true
          schema:
            type: string
        - description: >-
            Comma-separated list of aggregation types
            (avg,min,max,sum,sumPositive,sumNegative,count)
          in: query
          name: aggregations
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/github_com_Terralayr_monitoring_pkg_models_http_v0_responses.AggregatedMonitoringResponse
          description: OK
        '400':
          description: Bad Request
        '401':
          description: Unauthorized
        '404':
          description: Not Found
        '500':
          description: Internal Server Error
components:
  schemas:
    github_com_Terralayr_monitoring_pkg_models_http_v0_responses.AggregatedMonitoringResponse:
      properties:
        data:
          additionalProperties:
            $ref: >-
              #/components/schemas/github_com_Terralayr_monitoring_pkg_models_http_v0_responses.AggregatedDataPointGroup
          type: object
      type: object
    github_com_Terralayr_monitoring_pkg_models_http_v0_responses.AggregatedDataPointGroup:
      properties:
        dataPoints:
          items:
            $ref: >-
              #/components/schemas/github_com_Terralayr_monitoring_pkg_models_http_v0_responses.AggregatedDataPoint
          type: array
          uniqueItems: false
        metaData:
          $ref: >-
            #/components/schemas/github_com_Terralayr_monitoring_pkg_models_http_v0_responses.MetaData
      type: object
    github_com_Terralayr_monitoring_pkg_models_http_v0_responses.AggregatedDataPoint:
      properties:
        timestamp:
          type: string
        values:
          $ref: >-
            #/components/schemas/github_com_Terralayr_monitoring_pkg_models_types.AggregatedValues
      type: object
    github_com_Terralayr_monitoring_pkg_models_http_v0_responses.MetaData:
      properties:
        dataPointName:
          type: string
        externalID:
          type: string
        physicalAssetID:
          type: string
        unit:
          type: string
      type: object
    github_com_Terralayr_monitoring_pkg_models_types.AggregatedValues:
      properties:
        avg:
          type: number
        count:
          type: integer
        max:
          type: number
        min:
          type: number
        negativeHourNormalized:
          type: number
        positiveHourNormalized:
          type: number
        sum:
          type: number
        sumNegative:
          type: number
        sumPositive:
          type: number
        totalHourNormalized:
          type: number
      type: object

````