Retrieve a Contact's Publications
Lists every publication in the workspace with this contact's consent state.
GEThttps://api.audienceful.com/v2/people/{id}/publications
curl --location --request GET 'https://api.audienceful.com/v2/people/jQKdwqp3YRRtTrwqUJEp7d/publications' \
--header 'X-Api-Key: <your-api-key>'{
"data": [
{
"id": "kR2xN9mDfLpQ",
"name": "The Weekly",
"subscribed": true,
"explicit": true,
"source": "api"
},
{
"id": "mZ7bV3nQwXcT",
"name": "Product Updates",
"subscribed": false,
"explicit": false,
"source": null
}
],
"unsubscribed_all": false
}Requires the publications:read scope.
Publications are consent streams — a record of what a contact has agreed to receive. They are separate from audiences, which are about targeting; an actual send goes to the intersection of the two.
This endpoint returns every publication in the workspace alongside this one contact's effective state for each, so a client always sees the full picture rather than only the publications the contact has explicitly touched.
Path parameters
idstringrequired
The contact's id or email address (either identifier works).
Response
dataarray[object]
One entry per publication in the workspace.
unsubscribed_allboolean
true when the contact has globally unsubscribed from all email. A global unsubscribe outranks every per-publication state, so a contact with subscribed: true on a publication still receives nothing while this is true.Last updated: July 24, 2026