Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.archeraffiliates.com/llms.txt

Use this file to discover all available pages before exploring further.

Most list endpoints accept a limit parameter so you can control page size. The pagination style depends on the endpoint.

Offset pagination

Catalog-style endpoints use skip and limit.
curl "https://api.archeraffiliates.com/getproducts?skip=0&limit=100" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
Responses include:
FieldMeaning
total_countTotal rows that match the filters.
fetched_countRows returned in the current response.
Increase skip by limit until you have fetched the rows you need.

Page pagination

Link listing uses page and limit.
curl "https://api.archeraffiliates.com/get_all_links?page=1&limit=100" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
Increase page to fetch the next set of links.

Cursor pagination

Reports use cursor pagination.
curl "https://api.archeraffiliates.com/reports?start=2026-05-01&end=2026-05-31&limit=100" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
If the response includes next_cursor, pass it back as cursor:
curl "https://api.archeraffiliates.com/reports?start=2026-05-01&end=2026-05-31&limit=100&cursor=NEXT_CURSOR" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
When next_cursor is null, there are no more rows.