> ## 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 distinct data point names for a physical asset.

> Retrieves a list of all distinct data point names available for a specific physical



## OpenAPI

````yaml https://api.trlyr.com/monitoring/docs/doc.json get /{physicalAssetID}/datapoints/names
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/names:
    get:
      tags:
        - monitoring
      summary: Get distinct data point names for a physical asset.
      description: >-
        Retrieves a list of all distinct data point names available for a
        specific physical
      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
      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.DataPointNamesResponse
          description: OK
        '401':
          description: Unauthorized
        '404':
          description: Not Found
        '500':
          description: Internal Server Error
components:
  schemas:
    github_com_Terralayr_monitoring_pkg_models_http_v0_responses.DataPointNamesResponse:
      properties:
        dataPointNames:
          items:
            type: string
          type: array
          uniqueItems: false
      type: object

````