---
title: "List recent events for the Logs Explorer"
method: GET
path: "/console/v1/logs"
tags: ["Logs"]
---

# List recent events for the Logs Explorer

`GET /console/v1/logs`

## Query parameters

- `query` string
- `source` 'logs' | 'events' | 'spans'
- `columns` string
- `start_ts` integer
- `end_ts` integer
- `limit` integer
- `after` string

## Response `200`

Paginated event feed

- object
  - `message` string, required — A simple string explaining the result of the operation.
  - `data` object[], required — Array of results returned for this page.
    - `id` string, required — Stable identifier for the event. Used internally to derive pagination cursors.
    - `timestamp` string, nullable, required — When the event occurred (ISO 8601). Null when unavailable.
    - `event_name` string, nullable, required — Name of the event, e.g. "add_to_cart".
    - `user_id` string, nullable, required — User ID associated with the event, when present.
    - `value` string, nullable, required — Free-form value attached to the event.
    - `sdk_type` string, nullable, required — SDK that emitted the event, e.g. "javascript-client".
    - `sdk_version` string, nullable, required — SDK version string.
    - `fields` object — Present when the `columns` query param is set. Maps each requested column id to its string value.
  - `pagination` CursorPaginationMetadataDto, required
    - `next_cursor` string, nullable, required
    - `has_more` boolean, required
  - `columns` string[] — Echoes the column ids requested via the `columns` query param, in order.

---

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