Weld Reverse ETL Sync Runs API

The Reverse ETL Sync Runs API from Weld — 2 operation(s) for reverse etl sync runs.

Operations 2

GET /reverse_etl_sync_runs/{id} Get Reverse ETL Sync Run #
GET /reverse_etl_sync_runs List Reverse ETL Sync Runs #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/weld-reverse-etl-sync-runs-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

weld-reverse-etl-sync-runs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Weld REST Connection Bridge Reverse ETL Sync Runs API
  description: With the Weld REST API you can programmatically control your syncs
  version: '0.1'
  contact: {}
servers:
- url: https://connect.weld.app
security:
- api_key: []
tags:
- name: Reverse ETL Sync Runs
paths:
  /reverse_etl_sync_runs/{id}:
    get:
      description: Get details of a specific Reverse ETL Sync Run by its unique identifier.
      operationId: ReverseEtlSyncRunsOpenApiController_getReverseEtlSyncRun
      parameters:
      - name: id
        required: true
        in: path
        description: The opaque ID of the Reverse ETL Sync Run.
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReverseEtlSyncRunDto'
        '400':
          description: Invalid run ID format.
        '404':
          description: The Reverse ETL Sync Run was not found.
      summary: Get Reverse ETL Sync Run
      tags:
      - Reverse ETL Sync Runs
  /reverse_etl_sync_runs:
    get:
      description: List runs for a specific Reverse ETL Sync in pages sorted by their start date.
      operationId: ReverseEtlSyncRunsOpenApiController_getReverseEtlSyncRuns
      parameters:
      - name: reverse_etl_sync_id
        required: true
        in: query
        description: The ID of the Reverse ETL Sync to list runs for.
        schema:
          example: OoORhGXUVjsqFG
          type: string
      - name: starting_after
        required: false
        in: query
        description: The cursor to use in pagination. Use the value of the `next_cursor` field from the response of a previous list request.
        schema:
          example: ewK8sDoLNI4CFR
          type: string
      - name: limit
        required: false
        in: query
        description: The number of items to return in a single page.
        schema:
          minimum: 1
          maximum: 100
          default: 10
          type: integer
      - name: sort_direction
        required: false
        in: query
        description: The direction to sort the results.
        schema:
          default: desc
          example: desc
          type: string
          enum:
          - asc
          - desc
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PagedReverseEtlSyncRunDto'
        '404':
          description: ''
      summary: List Reverse ETL Sync Runs
      tags:
      - Reverse ETL Sync Runs
components:
  schemas:
    PagedReverseEtlSyncRunDto:
      type: object
      properties:
        has_more:
          type: boolean
          description: Indicates whether there are more items to be fetched in the subsequent pages.
          example: true
        next_cursor:
          type: string
          description: The cursor to use in pagination. Use this value as `starting_after` to get the next page.
          example: VeN1GjhVIq1D9h
        data:
          description: List of Reverse ETL Sync Runs.
          type: array
          items:
            $ref: '#/components/schemas/ReverseEtlSyncRunDto'
      required:
      - has_more
      - data
    ReverseEtlSyncRunDto:
      type: object
      properties:
        id:
          type: string
          description: Unique run identifier (opaque)
          example: T29PUmhHWFVWanNxRkd8MjAyNC0wMy0yMFQwOTowMDowMC4wMDBa
        reverse_etl_sync_id:
          type: string
          description: The Reverse ETL Sync ID
          example: OoORhGXUVjsqFG
        started_at:
          type: string
          description: When the run started
          example: '2024-03-20T09:00:00.000Z'
        finished_at:
          type: string
          description: When the run finished
          example: '2024-03-20T09:05:00.000Z'
        status:
          enum:
          - COMPLETED
          - FAILED
          - RUNNING
          - SCHEDULED
          type: string
          description: Run status
        total_rows:
          type: number
          description: The total number of rows retrieved from the source model during the sync job.
          example: 500
        distinct_rows:
          type: number
          description: The number of distinct rows retrieved from the source model during the sync job.
          example: 400
        new_rows:
          type: number
          description: 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.
          example: 300
        synced_rows:
          type: number
          description: The number of rows successfully synced to the destination.
          example: 200
        failed_rows:
          type: number
          description: The number of rows that failed to sync to the destination.
          example: 100
        error:
          type: string
          description: Error message if the whole run has failed.
          example: Connection timed out
      required:
      - id
      - reverse_etl_sync_id
      - started_at
      - status
  securitySchemes:
    api_key:
      type: apiKey
      name: x-api-key
      in: header
      description: The API key from Settings -> API Keys