curl --request GET \
--url https://api.bizzy.ai/v1/lists \
--header 'Authorization: Bearer <token>'
{
"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"
},
{
"id": 246813579,
"name": "Shared List",
"type": "SMART",
"columns": [
"description"
],
"shared": true,
"notifications": {
"enabled": false
},
"amountOfCompanies": 500,
"newResults": 25,
"updatedAt": "2024-11-19T12:00:00.000Z",
"createdAt": "2024-10-05T11:30:10.000Z",
"createdBy": "john.smith@example.com"
},
{
"id": 1123581321,
"name": "Static List A",
"type": "STATIC",
"columns": ["description"],
"shared": false,
"notifications": {
"enabled": false
},
"amountOfCompanies": 8,
"newResults": null,
"updatedAt": "2024-11-16T18:15:19.000Z",
"createdAt": "2024-09-25T14:10:00.000Z",
"createdBy": "alex.brown@example.com"
},
{
"id": 9988776655,
"name": "Updated AI Filters",
"type": "SMART",
"columns": [
"description"
],
"shared": false,
"notifications": {
"enabled": false
},
"amountOfCompanies": 120,
"newResults": 10,
"updatedAt": "2024-11-19T07:45:00.000Z",
"createdAt": "2024-10-10T10:20:10.000Z",
"createdBy": "lisa.white@example.com"
}
],
"pagination": {
"limit": 4,
"offset": 0,
"total": 50
}
}
curl --request GET \
--url https://api.bizzy.ai/v1/lists \
--header 'Authorization: Bearer <token>'
{
"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"
},
{
"id": 246813579,
"name": "Shared List",
"type": "SMART",
"columns": [
"description"
],
"shared": true,
"notifications": {
"enabled": false
},
"amountOfCompanies": 500,
"newResults": 25,
"updatedAt": "2024-11-19T12:00:00.000Z",
"createdAt": "2024-10-05T11:30:10.000Z",
"createdBy": "john.smith@example.com"
},
{
"id": 1123581321,
"name": "Static List A",
"type": "STATIC",
"columns": ["description"],
"shared": false,
"notifications": {
"enabled": false
},
"amountOfCompanies": 8,
"newResults": null,
"updatedAt": "2024-11-16T18:15:19.000Z",
"createdAt": "2024-09-25T14:10:00.000Z",
"createdBy": "alex.brown@example.com"
},
{
"id": 9988776655,
"name": "Updated AI Filters",
"type": "SMART",
"columns": [
"description"
],
"shared": false,
"notifications": {
"enabled": false
},
"amountOfCompanies": 120,
"newResults": 10,
"updatedAt": "2024-11-19T07:45:00.000Z",
"createdAt": "2024-10-10T10:20:10.000Z",
"createdBy": "lisa.white@example.com"
}
],
"pagination": {
"limit": 4,
"offset": 0,
"total": 50
}
}
STATIC
, SMART
or OVERVIEW
which will return both static and smart listsSTATIC
or SMART
null
.{
"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"
},
{
"id": 246813579,
"name": "Shared List",
"type": "SMART",
"columns": [
"description"
],
"shared": true,
"notifications": {
"enabled": false
},
"amountOfCompanies": 500,
"newResults": 25,
"updatedAt": "2024-11-19T12:00:00.000Z",
"createdAt": "2024-10-05T11:30:10.000Z",
"createdBy": "john.smith@example.com"
},
{
"id": 1123581321,
"name": "Static List A",
"type": "STATIC",
"columns": ["description"],
"shared": false,
"notifications": {
"enabled": false
},
"amountOfCompanies": 8,
"newResults": null,
"updatedAt": "2024-11-16T18:15:19.000Z",
"createdAt": "2024-09-25T14:10:00.000Z",
"createdBy": "alex.brown@example.com"
},
{
"id": 9988776655,
"name": "Updated AI Filters",
"type": "SMART",
"columns": [
"description"
],
"shared": false,
"notifications": {
"enabled": false
},
"amountOfCompanies": 120,
"newResults": 10,
"updatedAt": "2024-11-19T07:45:00.000Z",
"createdAt": "2024-10-10T10:20:10.000Z",
"createdBy": "lisa.white@example.com"
}
],
"pagination": {
"limit": 4,
"offset": 0,
"total": 50
}
}
Was this page helpful?