---
title: "List Reverse ETL Sync Runs"
method: GET
path: "/reverse_etl_sync_runs"
tags: ["Reverse ETL Sync Runs"]
---

# List Reverse ETL Sync Runs

`GET /reverse_etl_sync_runs`

List runs for a specific Reverse ETL Sync in pages sorted by their start date.

## Query parameters

- `reverse_etl_sync_id` string, required
- `starting_after` string
- `limit` integer
- `sort_direction` 'asc' | 'desc'

## Response `200`

- PagedReverseEtlSyncRunDto
  - `has_more` boolean, required — Indicates whether there are more items to be fetched in the subsequent pages.
  - `next_cursor` string — The cursor to use in pagination. Use this value as `starting_after` to get the next page.
  - `data` ReverseEtlSyncRunDto[], required — List of Reverse ETL Sync Runs.
    - `id` string, required — Unique run identifier (opaque)
    - `reverse_etl_sync_id` string, required — The Reverse ETL Sync ID
    - `started_at` string, required — When the run started
    - `finished_at` string — When the run finished
    - `status` 'COMPLETED' | 'FAILED' | 'RUNNING' | 'SCHEDULED', required — Run status
    - `total_rows` number — The total number of rows retrieved from the source model during the sync job.
    - `distinct_rows` number — The number of distinct rows retrieved from the source model during the sync job.
    - `new_rows` number — The number of rows that are new or have changed since the last sync. This is the number of rows submitted to the destination. It is 0, if no changes were detected in the source model since the last sync.
    - `synced_rows` number — The number of rows successfully synced to the destination.
    - `failed_rows` number — The number of rows that failed to sync to the destination.
    - `error` string — Error message if the whole run has failed.

## Other responses

- `404`

---

[API](https://skmtc.net/weld/apis/weld-rest-api.md) · [All operations](https://skmtc.net/weld/apis/weld-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/weld/weld-rest-api/revisions/75294f591cc2/schema)
