Skip to main content
POST
/
v2
/
companies
Bulk Details
curl --request POST \
  --url https://api.bizzy.ai/v2/companies \
  --header 'Authorization: Bearer <token>'
Response - 200
[
    {
        "identifier": {
            "countryCode": "BE",
            "companyId": "1778186251",
            "name": "Bizzy"
        },
        "data": {
            "status": "ACTIVE",
            "description": "Bizzy is a B2B intelligence platform that leverages AI to help users discover, qualify, and engage with companies efficiently, providing real-time insights and data integration.",
            "logo": "https://storage.googleapis.com/bizzy-company-logos/d079b341-9f0a-4651-ae12-3c083fe86244/7c878f57-b905-4a5f-bf73-3b76724edc95.png",
            "establishedSince": "1985-05-24T00:00:00.000Z",
            "name": "Bizzy",
            "address": {
                "country": "BE",
                "street": "Dok-Noord",
                "number": "5A",
                "box": null,
                "postalCode": "9000",
                "place": "Ghent"
            },
            "website": [
                "bizzy.ai"
            ],
            "socials": {
                "x": null,
                "facebook": null,
                "youtube": null,
                "instagram": null,
                "linkedin": "https://www.linkedin.com/company/71230820/"
            },
            "contact": {
                "email": null,
                "phone": null
            },
            "activities": [
                {
                    "activity": "SOFTWARE_DEVELOPMENT"
                },
                {
                    "activity": "DATA_ANALYTICS"
                }
            ],
            "revenueEstimations": "Bucket0_1M",
            "employeeEstimations": "Bucket20_49"
        },
        "message": null
    },
    {
        "identifier": {
            "countryCode": "BE",
            "companyId": "123",
            "name": ""
        },
        "data": null,
        "message": "Company not found"
    }
]

Request

Accept-Language
string
default:"EN"
  • NL: Dutch - FR: French - EN: English

Body

companies
array
You can request up to 100 companies at once.

Response

The following data fields can have a set of values:
status
string
status can be either ACTIVE or INACTIVE
revenueEstimations
string
revenueEstimations will be one of the following:
BucketDescription
Bucket0_1Mrevenue 0M to 1M (included)
Bucket1_2Mrevenue 1M to 2M (included)
Bucket2_5Mrevenue 2M to 5M (included)
Bucket5_10Mrevenue > 5M (excluded) to 10M (included)
Bucket10_50Mrevenue > 10M (excluded) to 50M (included)
Bucket50_100Mrevenue > 50M (excluded) to 100M (included)
Bucket100_500Mrevenue > 100M (excluded) to 500M (included)
BucketAbove500Mrevenue > 500M (excluded)
employeeEstimations
string
These estimations work in the same bucket system as revenueEstimations
contact
object
Response - 200
[
    {
        "identifier": {
            "countryCode": "BE",
            "companyId": "1778186251",
            "name": "Bizzy"
        },
        "data": {
            "status": "ACTIVE",
            "description": "Bizzy is a B2B intelligence platform that leverages AI to help users discover, qualify, and engage with companies efficiently, providing real-time insights and data integration.",
            "logo": "https://storage.googleapis.com/bizzy-company-logos/d079b341-9f0a-4651-ae12-3c083fe86244/7c878f57-b905-4a5f-bf73-3b76724edc95.png",
            "establishedSince": "1985-05-24T00:00:00.000Z",
            "name": "Bizzy",
            "address": {
                "country": "BE",
                "street": "Dok-Noord",
                "number": "5A",
                "box": null,
                "postalCode": "9000",
                "place": "Ghent"
            },
            "website": [
                "bizzy.ai"
            ],
            "socials": {
                "x": null,
                "facebook": null,
                "youtube": null,
                "instagram": null,
                "linkedin": "https://www.linkedin.com/company/71230820/"
            },
            "contact": {
                "email": null,
                "phone": null
            },
            "activities": [
                {
                    "activity": "SOFTWARE_DEVELOPMENT"
                },
                {
                    "activity": "DATA_ANALYTICS"
                }
            ],
            "revenueEstimations": "Bucket0_1M",
            "employeeEstimations": "Bucket20_49"
        },
        "message": null
    },
    {
        "identifier": {
            "countryCode": "BE",
            "companyId": "123",
            "name": ""
        },
        "data": null,
        "message": "Company not found"
    }
]