Lists

List items in a list

Returns the items in the specified list.

get/v3/lists/{list_id}/items

Query parameters

limitinteger

The maximum number of objects to return. See Pagination for more information.

page_tokenstring

A token to fetch the next page of results. Use the next_cursor value from the previous response.

Response

OK

request_idstring

ID of the request.

next_cursorstring

A token to use for paginating through results. If present, pass this value as page_token in the next request.

Example response

{
  "request_id": "5fa64c92-e840-4357-86b9-2aa364d35b88",
  "data": [
    {
      "id": "e1f2a3b4-5678-4abc-9def-0123456789ab",
      "list_id": "d1e2f3a4-5678-4abc-9def-0123456789ab",
      "value": "spam-domain.com",
      "created_at": 1742932766
    }
  ],
  "next_cursor": "eyJhbGciOiJIUzI1NiJ9"
}

Changes