GET
/
v1
/
lists
/
{id}
/
contacts
curl --request GET \
  --url https://api.bizzy.org/v1/lists/{id}/contacts \
  --header 'Authorization: Bearer <token>'
{
    "data": [
        {
            "jobTitle": "Head of Product & Engineering",
            "identifier": {
                "contactId": 1207528048,
                "firstName": "Arne",
                "lastName": "Snauwaert"
            },
            "company": {
                "country": "BE",
                "companyNumber": "770493071",
                "name": "Bizzy Fintech",
                "place": "Gent"
            }
        }
    ],
    "pagination": {
        "limit": 4,
        "offset": 0,
        "total": 1
    }
}

Request

Query

limit
number
default:"4"

Number of items to return per page. (max 500)

offset
number
default:"0"

Number of items to skip

{
    "data": [
        {
            "jobTitle": "Head of Product & Engineering",
            "identifier": {
                "contactId": 1207528048,
                "firstName": "Arne",
                "lastName": "Snauwaert"
            },
            "company": {
                "country": "BE",
                "companyNumber": "770493071",
                "name": "Bizzy Fintech",
                "place": "Gent"
            }
        }
    ],
    "pagination": {
        "limit": 4,
        "offset": 0,
        "total": 1
    }
}