---
title: "Ingest a series for a metric"
method: POST
path: "/series/{key}"
tags: ["Series"]
---

# Ingest a series for a metric

`POST /series/{key}`

Post a time point or multiple time points (series) to a metric. User authorization is not required instead provide the integration key of your metric.

## Path parameters

- `key` string, required

## Request body

- union — Can either be a single time point, omitting timestamp field is allowed as it will be replaced with now() - or a series of multiple time points
  - object
    - `timestamp` number — The unix epoch second of your time point
    - `value` number, double, required — Value of your time point
  - object
    - `series` SingleTimePoint[]
      - `timestamp` number — The unix epoch second of your time point
      - `value` number, double, required — Value of your time point

## Response `202`

The time points have been accepted

---

[API](https://skmtc.dev/ilert/apis/ilert-rest-api.md) · [All operations](https://skmtc.dev/ilert/apis/ilert-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/ilert/ilert-rest-api/revisions/cb7d5a5f9ab8/schema)
