List Fields
Returns a cursor-paginated list of your custom fields.
GEThttps://api.audienceful.com/v2/fields
curl --location --request GET 'https://api.audienceful.com/v2/fields' \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: <your-api-key>'{
"data": [
{
"id": "4XJA8RZ6kJRwMJYDBETyZa",
"name": "Email",
"data_name": "email",
"type": "string",
"editable": false,
"internal": true,
"required": false
},
{
"id": "o4i4TNZnWsq2f2ZWVqNNWY",
"name": "Plan",
"data_name": "plan",
"type": "string",
"editable": true,
"internal": false,
"required": false
}
],
"has_more": false,
"next_cursor": null
}Requires the fields:read scope.
Query parameters
page_sizenumberdefault: 100
The number of fields to return per page.
cursorstring
The pagination cursor from a previous response's
next_cursor. See Pagination.Response
dataarray
The page of custom fields.
has_moreboolean
Whether more fields exist after this page.
next_cursorstring or null
The cursor to pass as
?cursor= to fetch the next page.Last updated: July 11, 2026