---
title: "[BETA] Get all signals that match the query parameter criteria."
method: GET
path: "/api/admin/signals"
tags: ["Operational"]
---

# [BETA] Get all signals that match the query parameter criteria.

`GET /api/admin/signals`

**Enterprise feature**

**[BETA]** This API is in beta state, which means it may change or be removed in the future.

Returns a list of all signals that match the query parameter criteria.

## Query parameters

- `from` string
- `to` string
- `offset` string
- `limit` string

## Response `200`

#/components/schemas/signalQueryResponseSchema

- SignalQueryResponseSchema — A list of signals that have been registered by the system
  - `signals` SignalQuerySignalSchema[], required — The list of signals
    - `id` integer, required — The signal's ID. Signal IDs are incrementing integers. In other words, a more recently created signal will always have a higher ID than an older one.
    - `payload` object — The payload of the signal.
    - `createdAt` string, date-time, required — The date and time of when the signal was created.
    - `source` 'signal-endpoint', required — The signal source type. Should be used along with `sourceId` to uniquely identify the resource that created this signal.
    - `sourceId` integer, required — The ID of the source that created this signal. Should be used along with `source` to uniquely identify the resource that created this signal.
    - `tokenName` string, nullable — The name of the token used to register this signal.
    - `sourceName` string, nullable — The name of the source that registered this signal.
    - `sourceDescription` string, nullable — A more detailed description of the source that registered this signal.
  - `total` integer, required — The total count of signals

## Other responses

- `401` — Authorization information is missing or invalid. Provide a valid API token as the `authorization` header, e.g. `authorization:*.*.my-admin-token`.

---

[API](https://skmtc.net/unleash/apis/unleash-api-3.md) · [All operations](https://skmtc.net/unleash/apis/unleash-api-3/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/unleash/unleash-api-3/versions/b2c3116e633e/schema)
