Docs/API Reference/Migrations

List migrations

Migrations · GET /v1/migrations

List migrations

GET/v1/migrations

Request

curl https://api.repull.dev/v1/migrations?limit=25 \
  -H "Authorization: Bearer $REPULL_API_KEY"

Response

{
  "data": [ { "workspaceId": "1204", "name": "Seaside Rentals", "state": "imported", "counts": { "listings": 48, "reservations": 1312 } } ],
  "pagination": { "nextCursor": null, "hasMore": false, "total": 1 }
}

Query Parameters

limitintegerDefault: 25

Page size, 1–100.

cursorstring

`pagination.nextCursor` from the previous page.

AI