Skip to main content
Formalingo

Pagination

How to work with paginated list endpoints.

Pagination

List endpoints support offset-based pagination using page and limit query parameters.

Parameters

Query Parameters
NameTypeDescription
pageintegerPage number, starting at 1.1
limitintegerItems per page. Maximum 100.20

Response

Paginated responses include a meta object:

{
  "success": true,
  "data": [...],
  "meta": {
    "total": 143,
    "page": 2,
    "limit": 20
  }
}

Example

# Get the third page of forms, 10 per page
curl "https://formalingo.com/api/v1/forms?page=3&limit=10" \
  -H "Authorization: Bearer af_live_YOUR_KEY"

On this page