Skip to main content
PUT
/
v1
/
lists
/
{id}
/
companies
Bulk Companies
curl --request PUT \
  --url https://api.bizzy.ai/v1/lists/{id}/companies \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Successfully added 99 companies to the list",
  "failed": [ // Example error
    {
      "parameters": {
        "companyNumber": "123",
      },
      "message": "Company not found"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.bizzy.ai/llms.txt

Use this file to discover all available pages before exploring further.

This only works for static lists!
The accuracy of the matching process improves with more detailed information. Providing additional parameters can significantly enhance the precision of the results.

Request

At least one parameter is needed per company!

Body

companies
array
You can add up to 100 companies to a list at once.
{
  "success": true,
  "message": "Successfully added 99 companies to the list",
  "failed": [ // Example error
    {
      "parameters": {
        "companyNumber": "123",
      },
      "message": "Company not found"
    }
  ]
}