Lists API
Details
GET
/
v1
/
lists
/
{id}
Copy
curl --request GET \
--url https://api.bizzy.org/v1/lists/{id} \
--header 'Authorization: Bearer <token>'
Copy
{
"data": [
{
"id": 1357924680,
"name": "Example List One",
"type": "STATIC",
"columns": [
"activities",
"vatNumber",
"country",
"url",
"socials"
],
"shared": false,
"notifications": {
"enabled": true
},
"amountOfCompanies": 15,
"newResults": null,
"updatedAt": "2024-11-18T10:30:00.000Z",
"createdAt": "2024-10-20T08:45:00.000Z",
"createdBy": "jane.doe@example.com"
}
],
}
Request
Path
Response
The following fields can have a set of values:
type can be either STATIC
or SMART
For smart lists, it returns a number indicating the count of new results based on the applied filters.
For static lists, it is always set to null
.
Notifications can only be enabled for static lists at this time.
Copy
{
"data": [
{
"id": 1357924680,
"name": "Example List One",
"type": "STATIC",
"columns": [
"activities",
"vatNumber",
"country",
"url",
"socials"
],
"shared": false,
"notifications": {
"enabled": true
},
"amountOfCompanies": 15,
"newResults": null,
"updatedAt": "2024-11-18T10:30:00.000Z",
"createdAt": "2024-10-20T08:45:00.000Z",
"createdBy": "jane.doe@example.com"
}
],
}
Copy
curl --request GET \
--url https://api.bizzy.org/v1/lists/{id} \
--header 'Authorization: Bearer <token>'
Copy
{
"data": [
{
"id": 1357924680,
"name": "Example List One",
"type": "STATIC",
"columns": [
"activities",
"vatNumber",
"country",
"url",
"socials"
],
"shared": false,
"notifications": {
"enabled": true
},
"amountOfCompanies": 15,
"newResults": null,
"updatedAt": "2024-11-18T10:30:00.000Z",
"createdAt": "2024-10-20T08:45:00.000Z",
"createdBy": "jane.doe@example.com"
}
],
}
Assistant
Responses are generated using AI and may contain mistakes.