ids and get one entry per contact, in the same order.include=lists to get each list's full details instead, so you do not need a second call to resolve names.lists:read OAuth2 scope.X-Api-Key: ********************{
"ids": [
"3219787601",
"3219787635"
]
}curl --location 'https://api.leadfeeder.com/v1/lists/contacts?account_id=123456&include=undefined' \
--header 'X-Api-Key: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"ids": [
"3219787601",
"3219787635"
]
}'{
"data": [
{
"type": "contact",
"id": "3219787601",
"relationships": {
"lists": [
{
"type": "list",
"id": "contact_321"
}
]
}
},
{
"type": "contact",
"id": "3219787635",
"relationships": {
"lists": []
}
}
],
"meta": {
"request_id": "cf054205-dd8c-4473-8689-07c30fe0789f"
}
}