GET Fetch Contact Export Page​
Fetch one page of contact-export rows. The admin export runs by calling this repeatedly and assembling the CSV client-side, which is what keeps a six-figure export from timing out in a single request.
Paging is fixed at 500 rows per request and cannot be changed. Keep requesting while has_more is true, incrementing page.
total and headers are returned only on page 1 — capture them on the first call, because later pages carry just page, rows, and has_more.
The maximum page is 200, a hard ceiling of 100,000 rows per export; beyond that the endpoint returns 400.
filter_type selects one of two mutually exclusive branches: simple reads tags, lists, and statuses, while advanced reads advanced_filters and ignores the others.
This is the same handler as POST /subscribers-export, with parameters read from the query string. Array parameters must be sent in bracket form (columns[]=email). For anything but a small column list, prefer the POST form — long selections overflow practical URL length limits.
Required capability: fcrm_manage_contacts_export
Enforced by ExportPolicy::verifyRequest(), the policy default for this route group.
Requires: FluentCampaign Pro. Without it the route does not exist.
Authorizations​
WordPress Application Passwords — use Basic auth with your WordPress username and an application password in the format: username:application_password
Parameters​
Query Parameters
Contact columns to export. Required.
Custom field keys to add as columns.
Commerce columns to append. Forces has_commerce on.
1-based export page. Page size is fixed at 500; maximum page is 200.
1Cap on total rows across all pages.
Rows to skip before the first exported row.
Which filtering branch to use.
"simple""advanced""simple"Tag ids (simple filtering only).
List ids (simple filtering only).
Contact statuses (simple filtering only).
JSON-encoded filter groups (advanced filtering only).
Export only these contacts.
Restrict to these companies.
Search term applied to the contact query.
Column to sort by.
"id"Sort direction.
"ASC""DESC""DESC"Restrict to contacts that have commerce data.
Responses​
One page of export rows.