Zum Hauptinhalt springen
GET
/
contacts
/
v1
/
lists
/
static
Get static contact lists
curl --request GET \
  --url https://api.hubapi.com/contacts/v1/lists/static
{
  "lists": [
    {
      "listId": 123,
      "name": "<string>",
      "dynamic": true,
      "listType": "STATIC",
      "portalId": 123,
      "createdAt": 123,
      "updatedAt": 123,
      "internalListId": 123,
      "deleteable": true,
      "metaData": {
        "processing": "<string>",
        "size": 123,
        "error": "<string>",
        "lastProcessingStateChangeAt": 123,
        "lastSizeChangeAt": 123
      },
      "filters": [
        [
          {}
        ]
      ]
    }
  ],
  "offset": 123,
  "has-more": true
}

Abfrageparameter

count
integer
Standard:20

An integer that represents the number of lists that you want returned to your call. Defaults to 20, with a maximum of 250.

Erforderlicher Bereich: x <= 250
offset
integer

An integer that represents where to start your list pull from. You can use this offset parameter to pull lists that weren't in your initial call.

Antwort

200 - application/json

Successful response with static contact lists

lists
object[]
offset
integer
has-more
boolean
Last modified on April 9, 2026