Lightup Datapoints API

The Datapoints API from Lightup — 1 operation(s) for datapoints.

Operations 1

GET /api/{api_version}/ws/{workspace_id}/metrics/{metric_uuid}/datapoints Get datapoints for metric

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/lightup-datapoints-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

lightup-datapoints-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Lightup Metrics API provides CRUD interface to Dashboard objects.
  title: Lightup Dashboard API Credentials Datapoints API
  version: 1.0.0
servers:
- description: Enter your Lightup subdomain
  url: https://app.{clusterId}.lightup.ai
  variables:
    clusterId:
      default: demo
tags:
- name: Datapoints
paths:
  /api/{api_version}/ws/{workspace_id}/metrics/{metric_uuid}/datapoints:
    get:
      description: ''
      parameters:
      - description: ''
        explode: true
        in: path
        name: api_version
        required: true
        schema:
          allOf:
          - description: An enumeration.
            enum:
            - v1
            title: ApiVersion
            type: string
          default: v1
          title: api_version
      - description: UUID of the workspace; visible in the workspace URL.
        explode: true
        in: path
        name: workspace_id
        required: true
        schema:
          description: UUID of the workspace; visible in the workspace URL.
          title: workspace_id
          type: string
      - description: ''
        explode: true
        in: path
        name: metric_uuid
        required: true
        schema:
          title: metric_uuid
          type: string
      - description: Start timestamp of range
        explode: true
        in: query
        name: start_ts
        required: false
        schema:
          description: Start timestamp of range
          title: start_ts
          type: number
      - description: End timestamp of range
        explode: true
        in: query
        name: end_ts
        required: false
        schema:
          description: End timestamp of range
          title: end_ts
          type: number
      - description: Slice to filter query by
        explode: true
        in: query
        name: slice
        required: false
        schema:
          description: Slice to filter query by
          title: slice
          type: object
      - description: Start recorded timestamp of range
        explode: true
        in: query
        name: start_recorded_ts
        required: false
        schema:
          description: Start recorded timestamp of range
          title: start_recorded_ts
          type: number
      - description: End recorded timestamp of range
        explode: true
        in: query
        name: end_recorded_ts
        required: false
        schema:
          description: End recorded timestamp of range
          title: end_recorded_ts
          type: number
      - description: 'Input ''Bearer _access-token_''. To obtain access token, see API, API Credentials: Get access token.'
        explode: true
        in: header
        name: authorization
        required: true
        schema:
          description: 'Input ''Bearer _access-token_''. To obtain access token, see API, API Credentials: Get access token.'
          title: authorization
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  properties:
                    eventTs:
                      description: Time associated with the datapoint
                      title: Event timestamp
                      type: number
                    metricUuid:
                      description: Metric UUID for the datapoint
                      title: Metric UUID
                      type: string
                    recordedTs:
                      description: Time when metric was computed
                      title: Recorded timestamp
                      type: number
                    slice:
                      description: Slice of metric if present
                      title: Slice
                      type: object
                    value:
                      description: Metric value
                      title: Value
                      type: number
                  required:
                  - eventTs
                  - slice
                  - recordedTs
                  title: MetricDatapoint
                  type: object
                type: array
          description: ''
      summary: Get datapoints for metric
      tags:
      - Datapoints