Core concepts
Pagination
List endpoints use page-based pagination with a consistent response envelope.
Query parameters
| Parameter | Default | Range |
|---|---|---|
page | 1 | 1 or greater |
limit | 20 | 1–100 |
curl --url "https://api.signagewall.com/api/partner/v1/media?page=2&limit=50" \
--header "Authorization: Bearer $SIGNAGEWALL_PARTNER_API_KEY"
Collection envelope
{
"data": [],
"pagination": {
"page": 2,
"limit": 50,
"total": 126,
"totalPages": 3
}
}
Traversing results
Continue while page < totalPages. Do not infer a final page from a short result set, and do not request limits above 100.