Skip to main content
GET
/
v1
/
companies
/
{countryCode}
/
{companyNumber}
/
contacts
/
{contactId}
Contact Details
curl --request GET \
  --url https://api.bizzy.ai/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.ai", // 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:
  • SOFTWARE_ENGINEERING
  • DATA_ANALYTICS
  • CLOUD_ENGINEERING
  • BIO_ENGINEERING
  • CHEMICAL_ENGINEERING
  • ENGINEERING
  • PROJECT_MANAGEMENT
  • PRODUCT_MANAGEMENT
  • TEST_AND_QUALITY_ASSURANCE
  • CYBER_SECURITY
  • INNOVATION_AND_DIGITAL_TRANSFORMATION
  • FINANCE
  • ACCOUNTING
  • INVESTOR_RELATIONS
  • REAL_ESTATE_FINANCE
  • FINANCIAL_RISK
  • ASSET_MANAGEMENT
  • SOURCING_AND_PROCUREMENT
  • TAX
  • TREASURY
  • BANKING
  • PAYROLL_COMPENSATION_AND_BENEFITS
  • DIVERSITY_EQUITY_INCLUSION
  • RECRUITMENT
  • LEARNING_AND_DEVELOPMENT
  • HUMAN_RESOURCES
  • COMPLIANCE
  • PRIVACY
  • INTELLECTUAL_PROPERTY
  • LEGAL
  • DIGITAL_MARKETING
  • BRAND_MANAGEMENT
  • CONTENT_MARKETING
  • LEAD_GENERATION
  • PUBLIC_RELATIONS
  • SEO_OPTIMIZTION
  • EVENTS
  • SPONSORSHIPS
  • MARKETING
  • CORPORATE_STRATEGY
  • CUSTOMER_SUPPORT
  • LOGISTICS
  • SUPPLY_CHAIN
  • FACILITY_AND_PROPERTY_MANAGEMENT
  • OFFICE_MANAGEMENT
  • SAFETY_AND_SECURITY
  • STORE_OPERATIONS
  • OPERATIONS
  • ADMINISTRATION
  • ACCOUNT_MANAGEMENT
  • BUSINESS_DEVELOPMENT
  • CHANNEL_SALES
  • CUSTOMER_SUCCESS
  • PARTNERSHIPS
  • SALES
seniority
string[]
The available seniorities of the contact.
seniority is an array of the following values:
  • C_LEVEL
  • FOUNDER
  • OWNER
  • OFFICIAL_DIRECTOR
  • PARTNER
  • VP
  • DIRECTOR
  • SENIOR
  • MANAGER
  • ENTRY
  • INTERN
  • NON_MANAGEMENT
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.ai", // Example 
            "status": "VALID"
        },
        "mobilePhone": {
            "value": "+32 000 00 00 00", // Example
            "dataProvider": "PROSPEO",
            "error": null
        }
    }
}