GET
/
lists
/
{listId}
/
items
Get List Items
curl --request GET \
  --url https://api.village.do/v1/lists/{listId}/items \
  --header 'secret-key: <api-key>' \
  --header 'user-identifier: <user-identifier>'
{
  "data": {
    "items": [
      {
        "id": 101,
        "graph_id": "186532",
        "type": "people",
        "data": {}
      }
    ],
    "pagination": {
      "total": 2,
      "page": 1,
      "limit": 20,
      "hasNextPage": false
    }
  }
}

Authorizations

secret-key
string
header
required

Headers

user-identifier
string
required

Specify the user making the request. This identifier should match the one you used when integrating the user with Village.

Path Parameters

listId
integer
required

Query Parameters

page
integer
default:1
limit
integer
default:20

Response

200
application/json

Items page

The response is of type object.