e-Faktura API
Pagination
List endpoints (GET /v1/companies, GET /v1/einvoices, GET /v1/inbox, GET /v1/events, …)
use cursor pagination:
GET /v1/einvoices?limit=50
{
"data": [ { "...": "..." } ],
"nextCursor": "eyJpZCI6ImVpbnZfMDFKOVo0TTJOM1A0UTVSNlM3VDhVOVYwIn0"
}
Pass the returned nextCursor back as ?cursor=... to get the next page. nextCursor: null
means you’re on the last page. limit defaults to 25 and caps at 200 (GET /v1/einvoices) or is
otherwise a small fixed page size — check each endpoint’s reference entry.
Cursors are opaque — don’t parse them or construct your own; treat them as a single string to pass straight through.