Hey,
I’m trying to fetch my n8n workflows using pagination, as described in the n8n API documentation. However, I always receive the same cursor for subsequent pages.
Example request:
GET /api/v1/workflows?limit=10&cursor=eyJsaW1pdCI6MTAsIm9mZnNldCI6MTB9
response:
data:
nextCursor: eyJsaW1pdCI6MTAsIm9mZnNldCI6MTB9
Even when requesting the next page, the nextCursor value never changes, but the data changes. Has anyone encountered this issue or knows what might be causing it?
Information on my n8n setup
- n8n version: 1.123.14
- Database (default: SQLite): SQLite
- n8n EXECUTIONS_PROCESS setting (default: own, main): own
- Running n8n via (Docker, npm, n8n cloud, desktop app): n8n cloud
- Operating system:


