Pagination
Read all locks with stable opaque cursors.
GET /v1/locks returns at most 20 locks by default. Set limit from 1 to 100.
If nextCursor is not null, send it unchanged in the next request:
curl --fail-with-body \
--get \
--header "x-api-key: $MYREMOTELY_API_KEY" \
--data-urlencode 'limit=20' \
--data-urlencode 'cursor=PASTE_NEXT_CURSOR' \
'https://app.myremotely.ai/v1/locks'The cursor is opaque and bound to the organization that received it. Do not decode, edit, or reuse it with another key. A malformed, changed, or foreign cursor returns 404.
Continue until nextCursor is null. The service orders rows by creation time and lock ID, both descending, so equal timestamps have a stable order.
Last updated Sep 19, 2026