Passer au contenu principal
GET
/
contacts
/
v1
/
lists
/
{list_id}
/
contacts
/
all
Get contacts in a list
curl --request GET \
  --url https://api.hubapi.com/contacts/v1/lists/{list_id}/contacts/all
{
  "contacts": [
    {
      "vid": 123,
      "canonical-vid": 123,
      "merged-vids": [
        123
      ],
      "portal-id": 123,
      "is-contact": true,
      "addedAt": 123,
      "properties": {},
      "form-submissions": [
        {}
      ],
      "identity-profiles": [
        {}
      ],
      "merge-audits": [
        {}
      ]
    }
  ],
  "has-more": true,
  "vid-offset": 123
}

Documentation Index

Fetch the complete documentation index at: https://developers.hubspot.fr/docs/llms.txt

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

Paramètres de chemin

list_id
integer
requis

Unique identifier for the list you're looking for.

Paramètres de requête

count
integer
défaut:20

This parameter lets you specify the amount of contacts to return in your API call. The default for this parameter is 20 contacts. The maximum amount of contacts you can have returned is 100.

Plage requise: x <= 100
vidOffset
integer

Used to page through the contacts. Every call to this endpoint will return a vid-offset value. This value is used in the vidOffset parameter of the next call to get the next page of contacts.

property
string[]

If you include the "property" parameter, then the properties in the "contact" object in the returned data will only include the property or properties that you request.

propertyMode
enum<string>
défaut:value_only

One of "value_only" or "value_and_history" to specify if the current value for a property should be fetched, or the value and all the historical values for that property.

Options disponibles:
value_only,
value_and_history
formSubmissionMode
enum<string>
défaut:newest

One of "all", "none", "newest", "oldest" to specify which form submissions should be fetched.

Options disponibles:
all,
none,
newest,
oldest
showListMemberships
boolean
défaut:false

Boolean to indicate whether current list memberships should be fetched for the contact.

Réponse

200 - application/json

Successful response with contacts in the list

contacts
object[]
has-more
boolean
vid-offset
integer
Last modified on April 2, 2026