---
title: "List Tracked Data"
method: GET
path: "/api/v1/tracked-data"
tags: ["Tracked Data"]
---

# List Tracked Data

`GET /api/v1/tracked-data`

Retrieves a paginated list of tracked data records. Can be filtered by `flow_id`, `flow_run_id`, `step_id`, `entity_type_id`, `value`, `created_before`, and `created_after`.

## Query parameters

- `filter[flow_id]` string
- `filter[flow_run_id]` string
- `filter[step_id]` string
- `filter[entity_type_id]` string
- `filter[tracked_data_store_reference]` string
- `filter[value]` string
- `filter[created_before]` string
- `filter[created_after]` string
- `include` string
- `sort` string
- `page` integer
- `per_page` integer

## Response `200`

Successful response

- TrackedDataListResponse
  - `data` TrackedData[]
    - `id` integer — Unique identifier
    - `created_at` string, date-time
    - `updated_at` string, date-time
    - `flow_id` integer
    - `flow_run_id` integer
    - `step_id` integer
    - `entity_type_id` integer
    - `tracked_data_store_reference` string
    - `value` string
    - `direction` 'Send' | 'Receive'
    - `sent_count` object
    - `received_count` object
    - `success` object
    - `flow` object
    - `flow_step` object
    - `flow_run` object
    - `entity_type` object
  - `meta` PaginationMeta
    - `current_page` integer
    - `from` integer, nullable
    - `last_page` integer
    - `path` string
    - `per_page` integer
    - `to` integer, nullable
    - `total` integer
  - `links` PaginationLinks
    - `first` string, uri
    - `last` string, uri
    - `prev` string, uri, nullable
    - `next` string, uri, nullable

## Other responses

- `401` — Unauthenticated
- `403` — Unauthorized

---

[API](https://skmtc.net/wearepatchworks/apis/patchworks-core-api.md) · [All operations](https://skmtc.net/wearepatchworks/apis/patchworks-core-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/wearepatchworks/patchworks-core-api/revisions/89261af4dd80/schema)
