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

# Get Metric Point



## OpenAPI

````yaml api-reference/openapi.json get /metrics/{metric}/points/{metricPoint}
openapi: 3.1.0
info:
  title: Cachet
  version: 0.0.1
  description: >-
    API documentation for Cachet, the open-source, self-hosted status page
    system.
servers:
  - url: http://localhost/api
  - url: https://v3.cachethq.io/api
    description: The Cachet v3 demo server.
security:
  - http: []
tags:
  - name: Cachet
  - name: Components
  - name: Component Groups
  - name: Incidents
  - name: Incident Updates
  - name: Incident Templates
  - name: Metrics
  - name: Metric Points
  - name: Schedules
  - name: Schedule Updates
paths:
  /metrics/{metric}/points/{metricPoint}:
    get:
      tags:
        - Metric Points
      summary: Get Metric Point
      operationId: cachet.api.metrics.points.show
      parameters:
        - name: metric
          in: path
          required: true
          description: The metric ID
          schema:
            type: integer
        - name: metricPoint
          in: path
          required: true
          description: The metric point ID
          schema:
            type: integer
        - name: include
          in: query
          description: >-
            Available includes are `metric`, `metricCount`, `metricExists`. You
            can include multiple options by separating them with a comma.
          schema:
            type: string
      responses:
        '200':
          description: '`MetricPoint`'
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/MetricPoint'
                required:
                  - data
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
      security: []
components:
  schemas:
    MetricPoint:
      type: object
      properties:
        id:
          type: string
        type:
          type: string
          enum:
            - metricPoints
        attributes:
          type: object
          properties:
            id:
              type: integer
            metric_id:
              type: integer
            calculated_value:
              type: string
            value:
              type: number
            counter:
              type: integer
            created:
              type: object
              properties:
                human:
                  type: string
                string:
                  type: string
              required:
                - human
                - string
            updated:
              type: object
              properties:
                human:
                  type: string
                string:
                  type: string
              required:
                - human
                - string
          required:
            - id
            - metric_id
            - calculated_value
            - value
            - counter
            - created
            - updated
        relationships:
          type: object
          properties:
            metric:
              type: object
              properties:
                data:
                  anyOf:
                    - $ref: '#/components/schemas/MetricIdentifier'
                    - type: 'null'
              required:
                - data
      required:
        - id
        - type
      title: MetricPoint
    MetricIdentifier:
      type: object
      properties:
        type:
          type: string
          enum:
            - metrics
        id:
          type: string
      required:
        - type
        - id
      title: MetricIdentifier
  responses:
    ModelNotFoundException:
      description: Not found
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Error overview.
            required:
              - message
  securitySchemes:
    http:
      type: http
      scheme: bearer

````