GET
/
v1
/
companies
/
{countryCode}
/
{companyNumber}
/
contacts
/
{contactId}
curl --request GET \
  --url https://api.bizzy.org/v1/companies/{countryCode}/{companyNumber}/contacts/{contactId} \
  --header 'Authorization: Bearer <token>'
{
    "identifier": {
        "contactId": 1207528048,
        "firstName": "Arne",
        "lastName": "Snauwaert"
    },
    "data": {
        "firstName": "Arne",
        "lastName": "Snauwaert",
        "fullName": "Arne Snauwaert",
        "linkedinUrl": "https://be.linkedin.com/in/arne-snauwaert",
        "jobTitle": "Head of Product & Engineering",
        "department": [
            "PRODUCT_MANAGEMENT",
            "C_SUITE"
        ],
        "seniority": [
            "DIRECTOR"
        ],
        "email": {
            "value": "info@bizzy.org", // Example 
            "status": "VALID"
        },
        "mobilePhone": {
            "value": "+32 000 00 00 00", // Example
            "dataProvider": "PROSPEO",
            "error": null
        }
    }
}

Request

Path

countryCode
string
required

countryCode can be either BE, NL or FR

companyNumber
string
required
  • Belgium: Enterprise (KBO) number. This is equal to the VAT without ‘BE’.
  • The Netherlands: KVK number
  • France: SIREN number
contactId
string
required
  • ContactId is the unique identifier of the contact.

Query

enrichEmail
boolean
default:"false"

Option to enrich the contact with email address. (If available)

Enriching costs credits - see the Credit usage section

enrichMobilePhone
boolean
default:"false"

Option to enrich the contact with mobile phone number. (If available)

Enriching costs credits - see the Credit usage section

Response

department
string[]

The available departments of the contact.
department is an array of the following values:

seniority
string[]

The available seniorities of the contact.
seniority is an array of the following values:

mobilePhone
object
{
    "identifier": {
        "contactId": 1207528048,
        "firstName": "Arne",
        "lastName": "Snauwaert"
    },
    "data": {
        "firstName": "Arne",
        "lastName": "Snauwaert",
        "fullName": "Arne Snauwaert",
        "linkedinUrl": "https://be.linkedin.com/in/arne-snauwaert",
        "jobTitle": "Head of Product & Engineering",
        "department": [
            "PRODUCT_MANAGEMENT",
            "C_SUITE"
        ],
        "seniority": [
            "DIRECTOR"
        ],
        "email": {
            "value": "info@bizzy.org", // Example 
            "status": "VALID"
        },
        "mobilePhone": {
            "value": "+32 000 00 00 00", // Example
            "dataProvider": "PROSPEO",
            "error": null
        }
    }
}