CUFinder Data Enrichment APIs

This section provides a comprehensive list of all the available APIs, along with detailed instructions on how to use them. Additionally, you will find pseudocode examples in various programming languages for your reference.

Supported Sample Codes

Curl

Curl is a command-line tool and library used for making HTTP requests and interacting with web servers.

PHP

A popular general-purpose scripting language that is especially suited to web development.

Node.js

Node.js® is an open-source, cross-platform JavaScript runtime environment.

Python

Python is a programming language that lets you work quickly and integrate systems more effectively.


POSThttps://api.cufinder.io/v1/cuf

Company Website Finder API

The Company Website Finder API is a powerful tool that allows you to convert a company name into its corresponding domain name. With this API, you can effortlessly retrieve the website addresses of companies, enabling you to streamline your business processes and gather valuable information efficiently.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    companyName
    Type
    string
    Description

    The name of company.

Credit usage

If the answer is found, one credit will be deducted, otherwise no credit will be deducted

Request

POST
/v1/cuf
curl --location 'https://api.cufinder.io/v1/cuf' \
     --header 'Content-Type: application/json' \
     --data '{
        "apiKey": "api_key",
        "companyName": "stripe"
    }'

Response

{
    "query": "stripe",
    "url": "stripe.com",
    "credit_count": 939,
    "confidence_level": 97
}

POSThttps://api.cufinder.io/v1/lcuf

Company LinkedIn URL Finder API

The Company LinkedIn URL Finder API is a powerful tool that allows you to convert a company name into its corresponding LinkedIn page URL. With this API, you can effortlessly retrieve the LinkedIn page URL of companies, enabling you to streamline your business processes and gather valuable information efficiently.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    companyName
    Type
    string
    Description

    The name of company.

Credit usage

If the answer is found, one credit will be deducted, otherwise no credit will be deducted

Request

POST
/v1/lcuf
curl --location 'https://api.cufinder.io/v1/lcuf' \
     --header 'Content-Type: application/json' \
     --data '{
        "apiKey": "api_key",
        "companyName": "stripe"
    }'

Response

{
    "query": "stripe",
    "url": "https://www.linkedin.com/company/stripe",
    "credit_count": 939,
    "confidence_level": 97
}

POSThttps://api.cufinder.io/v1/dtc

Domain to Company Name API

The Company Domain to Name API is a valuable resource that enables you to convert a company's domain name into its corresponding company name. With this API, you can easily retrieve the names of companies based on their website addresses, providing you with valuable insights and facilitating seamless data integration into your applications and systems.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    companyWebsite
    Type
    string
    Description

    The domain of company.

Credit usage

If the answer is found, one credit will be deducted, otherwise no credit will be deducted

Request

POST
/v1/dtc
curl --location 'https://api.cufinder.io/v1/dtc' \
     --header 'Content-Type: application/json' \
     --data '{
        "apiKey": "api_key",
        "companyWebsite": "stripe.com"
    }'

Response

{
    "query": "stripe.com",
    "url": "stripe",
    "credit_count": 939,
    "confidence_level": 98
}

POSThttps://api.cufinder.io/v1/dte

Company Email Finder API

The Company Email Finder API is a powerful tool that allows you to convert a company's domain name into a list of corresponding email addresses associated with that company. With this API, you can effortlessly gather the email contacts of companies, enabling you to streamline your outreach efforts, enhance communication, and foster valuable business relationships.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    companyDomain
    Type
    string
    Description

    The domain of company.

Credit usage

If the answer is found, one credit for each 5 emails will be deducted, otherwise no credit will be deducted.

Request

POST
/v1/dte
curl --location 'https://api.cufinder.io/v1/dte' \
     --header 'Content-Type: application/json' \
     --data '{
        "apiKey": "api_key",
        "companyDomain": "stripe.com"
    }'

Response

{
    "query": "stripe.com",
    "emails": [
        "privacy@stripe.com",
        "info@stripe.com",
        "sales@stripe.com",
        "tatiana@stripe.com",
        "hello@stripe.com",
        "atikh@stripe.com",
        "luca.pacioli@stripe.com",
        "accommodations@stripe.com",
        "atlas@stripe.com",
        "uca.pacioli@stripe.com"
    ],
    "credit_count": 925,
    "confidence_level": 96
}

POSThttps://api.cufinder.io/v1/dtl

Domain to Company LinkedIn Page URL API

The Company Domain to LinkedIn URL API is a valuable resource that enables you to convert a company's domain name into its corresponding LinkedIn Page URL. With this API, you can easily retrieve the LinkedIn profiles of companies based on their website addresses, allowing you to expand your professional network, research companies, and establish valuable connections within the business world.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    companyDomain
    Type
    string
    Description

    The domain of company.

Credit usage

If the answer is found, one credit will be deducted, otherwise no credit will be deducted

Request

POST
/v1/dtl
curl --location 'https://api.cufinder.io/v1/dtl' \
     --header 'Content-Type: application/json' \
     --data '{
        "apiKey": "api_key",
        "companyDomain": "stripe.com"
    }'

Response

{
    "query": "stripe.com",
    "url": "linkedin.com/company/stripe",
    "credit_count": 924,
    "confidence_level": 98
}

POSThttps://api.cufinder.io/v1/dtp

Domain to IP API

The Company Domain to IP API is a useful tool that allows you to convert a company's domain name into its corresponding IP address. With this API, you can effortlessly retrieve the host information of companies, providing you with valuable insights into their network infrastructure and facilitating various networking and security operations within your applications and systems.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    domain
    Type
    string
    Description

    The domain.

Credit usage

If the answer is found, one credit will be deducted, otherwise no credit will be deducted

Request

POST
/v1/dtc
curl --location 'https://api.cufinder.io/v1/dtp' \
    --header 'Content-Type: application/json' \
    --data '{
        "apiKey": "api_key",
        "domain": "stripe.com"
    }'

Response

{
    "query": "stripe.com",
    "ip": "54.187.159.182",
    "credit_count": 923,
    "confidence_level": 94
}

POSThttps://api.cufinder.io/v1/dtpp

Company Phone Finder API

The Company Phone Finder API is a powerful tool that allows you to convert a company's domain name into a list of corresponding phone numbers associated with that company. With this API, you can effortlessly gather the phone number contacts of companies, enabling you to streamline your outreach efforts, enhance communication, and foster valuable business relationships.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    companyDomain
    Type
    string
    Description

    The domain of company.

Credit usage

If the answer is found, one credit for each 5 phone numbers will be deducted, otherwise no credit will be deducted.

Request

POST
/v1/dtpp
curl --location 'https://api.cufinder.io/v1/dtpp' \
     --header 'Content-Type: application/json' \
     --data '{
        "apiKey": "api_key",
        "companyDomain": "stripe.com"
    }'

Response

{
    "query": "stripe.com",
    "phones": [
        "+14585552863",
        "+14585552864",
        "+14585552865",
        "+14585552866",
        "+14585552867",
        "+14585552868",
        "+14585552869",
        "+14585552861",
        "+14585552862",
        "+14585552860"
    ],
    "credit_count": 925,
    "confidence_level": 96
}

POSThttps://api.cufinder.io/v1/dtp

Domain to IP API

The Company Domain to IP API is a useful tool that allows you to convert a company's domain name into its corresponding IP address. With this API, you can effortlessly retrieve the host information of companies, providing you with valuable insights into their network infrastructure and facilitating various networking and security operations within your applications and systems.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    domain
    Type
    string
    Description

    The domain.

Credit usage

If the answer is found, one credit will be deducted, otherwise no credit will be deducted

Request

POST
/v1/dtc
curl --location 'https://api.cufinder.io/v1/dtp' \
    --header 'Content-Type: application/json' \
    --data '{
        "apiKey": "api_key",
        "domain": "stripe.com"
    }'

Response

{
    "query": "stripe.com",
    "ip": "54.187.159.182",
    "credit_count": 923,
    "confidence_level": 94
}

POSThttps://api.cufinder.io/v1/dtpr

Domain to Page Rank API

The Company Domain to Page Rank API is a powerful resource that enables you to convert a company's domain name into its corresponding page rank. With this API, you can effortlessly retrieve the page ranking of companies, allowing you to gauge their online visibility, assess their digital presence, and make informed decisions based on their search engine performance.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    domain
    Type
    string
    Description

    The domain.

Credit usage

If the answer is found, one credit will be deducted, otherwise no credit will be deducted

Request

POST
/v1/dtpr
curl --location 'https://api.cufinder.io/v1/dtpr' \
     --header 'Content-Type: application/json' \
     --data '{
        "apiKey": "api_key",
        "domain": "stripe.com"
    }'

Response

{
    "query": "stripe.com",
    "pagerank": "98",
    "credit_count": 921,
    "confidence_level": 96
}

POSThttps://api.cufinder.io/v1/etc

Email to Company Name API

The Email to Company Name API is a valuable tool that allows you to convert a company email address into the corresponding company name. With this API, you can easily retrieve the names of companies based on their email addresses, enabling you to personalize your communications, improve customer relationship management, and gain valuable insights into your contacts.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    companyEmail
    Type
    string
    Description

    The company email.

Credit usage

If the answer is found, one credit will be deducted, otherwise no credit will be deducted

Request

POST
/v1/etc
curl --location 'https://api.cufinder.io/v1/etc' \
     --header 'Content-Type: application/json' \
     --data-raw '{
        "apiKey": "api_key",
        "companyEmail": "info@stripe.com"
    }'

Response

{
    "query": "info@stripe.com",
    "company_name": "stripe",
    "credit_count": 920,
    "confidence_level": 94
}

POSThttps://api.cufinder.io/v1/etl

Business Email to LinkedIn Profile URL API

The Contact Business Email to LinkedIn Profile URL API is a powerful resource that enables you to convert a person's business email address into their corresponding LinkedIn profile URL. With this API, you can effortlessly retrieve the LinkedIn profiles of individuals based on their email addresses, allowing you to expand your professional network, gather more information about contacts, and establish valuable connections within the business world.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    email
    Type
    string
    Description

    The contact business email.

Credit usage

If the answer is found, one credit will be deducted, otherwise no credit will be deducted

Request

POST
/v1/etl
curl --location 'https://api.cufinder.io/v1/etl' \
     --header 'Content-Type: application/json' \
     --data-raw '{
        "apiKey": "api_key",
        "email": "ariane.chee@stripe.com"
    }'

Response

{
    "query": "ariane.chee@stripe.com",
    "linkedin": "https://www.linkedin.com/in/ariane-chee-11547638",
    "credit_count": 919,
    "confidence_level": 93
}

POSThttps://api.cufinder.io/v1/etn

Business Email to Person Name API

The Contact Business Email to Person Name API is a valuable tool that allows you to convert a person's business email address into their corresponding full name. With this API, you can easily retrieve the names of individuals based on their email addresses, enabling you to personalize your communications, enhance customer relationship management, and gain a deeper understanding of your contacts.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    email
    Type
    string
    Description

    The contact business email.

Credit usage

If the answer is found, one credit will be deducted, otherwise no credit will be deducted

Request

POST
/v1/etn
curl --location 'https://api.cufinder.io/v1/etn' \
     --header 'Content-Type: application/json' \
     --data-raw '{
        "apiKey": "api_key",
        "email": "neil.harvey@kbr.com"
    }'

Response

{
    "query": "neil.harvey@kbr.com",
    "firstName": "neil",
    "lastName": "harvey",
    "credit_count": 918,
    "confidence_level": 99
}

POSThttps://api.cufinder.io/v1/ftd

Company Facebook Page URL to Domain API

The Company Facebook Page URL to Domain API is a useful tool that allows you to convert a company's Facebook Page URL into its corresponding domain name. With this API, you can effortlessly retrieve the website addresses of companies based on their Facebook pages, enabling you to integrate and analyze social media data with other business processes and applications efficiently.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    facebookURL
    Type
    string
    Description

    The Facebook Page URL of the company.

Credit usage

If the answer is found, one credit will be deducted, otherwise no credit will be deducted

Request

POST
/v1/ftd
curl --location 'https://api.cufinder.io/v1/ftd' \
     --header 'Content-Type: application/json' \
     --data '{
        "apiKey": "api_key",
        "facebookURL": "https://www.facebook.com/hubspot"
    }'

Response

{
    "query": "https://www.facebook.com/hubspot",
    "companyDomain": "hubspot.com",
    "credit_count": 915,
    "confidence_level": 94
}

POSThttps://api.cufinder.io/v1/itd

Company Instagram Page URL to Domain API

The Company Instagram Page URL to Domain API is a valuable resource that enables you to convert a company's Instagram Page URL into its corresponding domain name. With this API, you can easily retrieve the website addresses of companies based on their Instagram presence, allowing you to seamlessly integrate Instagram data with other business operations and gain a comprehensive understanding of a company's online presence.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    instagramURL
    Type
    string
    Description

    The Instagram Page URL of the company.

Credit usage

If the answer is found, one credit will be deducted, otherwise no credit will be deducted

Request

POST
/v1/itd
curl --location 'https://api.cufinder.io/v1/itd' \
     --header 'Content-Type: application/json' \
     --data '{
        "apiKey": "api_key",
        "instagramURL": "https://www.instagram.com/hubspot"
    }'

Response

{
    "query": "https://www.instagram.com/hubspot",
    "companyDomain": "hubspot.com",
    "credit_count": 914,
    "confidence_level": 99
}

POSThttps://api.cufinder.io/v1/itm

Person Phone Finder API

The Person Phone Finder API is a valuable resource that enables you to convert a person's name and country information into their corresponding mobile phone number. With this API, you can easily retrieve the mobile contact details of individuals, allowing you to enhance communication, streamline customer interactions, and facilitate efficient business operations while adhering to privacy regulations and obtaining necessary consents.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    firstName
    Type
    string
    Description

    The first name of person.

  • Name
    lastName
    Type
    string
    Description

    The last name of person.

  • Name
    country
    Type
    string
    Description

    The country of person.

Credit usage

If the answer is found, one credit will be deducted, otherwise no credit will be deducted

Request

POST
/v1/etl
curl --location 'https://api.cufinder.io/v1/itm' \
     --header 'Content-Type: application/json' \
     --data '{
        "apiKey": "api_key",
        "firstName": "Denise",
        "lastName": "Weiner",
        "country": "United States"
    }'

Response

{
    "query": "Denise Weiner in United States",
    "phone": "18458263692",
    "credit_count": 913,
    "confidence_level": 94
}

POSThttps://api.cufinder.io/v1/lcuf_employee

Company's Employees Finder API

The Company's Employees Finder API is a powerful tool that allows you to convert a company name into a comprehensive list of employees, including their first name, last name, job title, and LinkedIn profile URL. With this API, you can effortlessly gather valuable information about a company's workforce, enabling you to explore potential business opportunities, establish professional connections, and leverage LinkedIn data for various business purposes.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    companyName
    Type
    string
    Description

    The first name of person.

Credit usage

If the answer is found, one credit will be deducted for each 5 employees, otherwise no credit will be deducted

Request

POST
/v1/lcuf_employee
curl --location 'https://api.cufinder.io/v1/lcuf_employee' \
     --header 'Content-Type: application/json' \
     --data '{
        "apiKey": "api_key",
        "companyName": "stripe"
    }'

Response

{
    "query": "stripe",
    "employees": 
    [
        {
            "linkedin_url": "https://www.linkedin.com/in/johnbcollison",
            "name": "John Collison",
            "title": "President"
        },
        {
            "linkedin_url": "https://www.linkedin.com/in/patrickcollison",
            "name": "Patrick Collison",
            "title": "Content Strategist"
        },
        ...
    ]
}

POSThttps://api.cufinder.io/v1/lpuf

LinkedIn Profile URL Finder API

The LinkedIn Profile URL Finder API is a valuable resource that allows you to convert a person's name and company name into their corresponding LinkedIn profile URL. With this API, you can effortlessly retrieve the LinkedIn profiles of individuals based on their name and associated company, enabling you to connect with professionals, explore their professional background, and foster meaningful business relationships.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    personName
    Type
    string
    Description

    The name of the person.

  • Name
    companyName
    Type
    string
    Description

    The name of the company.

Credit usage

If the answer is found, one credit will be deducted, otherwise no credit will be deducted

Request

POST
/v1/lpuf
curl --location 'https://api.cufinder.io/v1/lpuf' \
     --header 'Content-Type: application/json' \
     --data '{
        "apiKey": "api_key",
        "personName": "Ariane Chee",
        "companyName": "stripe"
    }'

Response

{
    "query": "Ariane Chee in stripe",
    "url": "https://www.linkedin.com/in/ariane-chee-11547638",
    "credit_count": 902,
    "confidence_level": 98
}

POSThttps://api.cufinder.io/v1/ltd

Company LinkedIn to Domain API

The Company LinkedIn to Domain API is a powerful tool that allows you to convert a company's LinkedIn URL into its corresponding domain name. With this API, you can effortlessly retrieve the website addresses of companies based on their LinkedIn presence, enabling you to seamlessly integrate LinkedIn data into your business processes and gain valuable insights into a company's online presence and industry presence.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    companyLinkedin
    Type
    string
    Description

    The LinkedIn URL of the company.

Credit usage

If the answer is found, one credit will be deducted, otherwise no credit will be deducted

Request

POST
/v1/etl
curl --location 'https://api.cufinder.io/v1/ltd' \
     --header 'Content-Type: application/json' \
     --data '{
        "apiKey": "api_key",
        "companyLinkedin": "https://linkedin.com/company/stripe"
    }'

Response

{
    "query": "https://linkedin.com/company/stripe",
    "domain": "stripe.com",
    "credit_count": 901,
    "confidence_level": 94
}

POSThttps://api.cufinder.io/v1/lti

Person LinkedIn Profile to Person Information API

The Person LinkedIn Profile to Person Information API is a valuable resource that allows you to convert a LinkedIn profile URL into comprehensive person information, including their first name, last name, job title, and company name. With this API, you can effortlessly retrieve and analyze important details about individuals, enabling you to enrich your contact database, personalize communication, and gain valuable insights for networking and business purposes.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    linkedin
    Type
    string
    Description

    The person LinkedIn URL.

Credit usage

If the answer is found, one credit will be deducted, otherwise no credit will be deducted

Request

POST
/v1/lti
curl --location 'https://api.cufinder.io/v1/lti' \
     --header 'Content-Type: application/json' \
     --data '{
        "apiKey": "api_key",
        "linkedin": "https://linkedin.com/in/ariane-chee-11547638"
    }'

Response

{
    "query": "https://linkedin.com/in/ariane-chee-11547638",
    "first_name": "ariane",
    "last_name": "chee",
    "job_company_name": "stripe",
    "job_title": "product",
    "credit_count": 900,
    "confidence_level": 97
}

POSThttps://api.cufinder.io/v1/mti

Phone Number to Person Name API

The Phone Number to Person Name API is a powerful tool that enables you to convert a mobile number into the corresponding person's name and country. With this API, you can effortlessly retrieve important details about individuals, allowing you to enhance communication, personalize interactions, and gain valuable insights for various business and customer engagement purposes.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    phoneNumber
    Type
    string
    Description

    The person phone number.

Credit usage

If the answer is found, one credit will be deducted, otherwise no credit will be deducted

Request

POST
/v1/mti
curl --location 'https://api.cufinder.io/v1/mti' \
     --header 'Content-Type: application/json' \
     --data '{
        "apiKey": "api_key",
        "phoneNumber": "18458263692"
    }'

Response

{
    "query": "18458263692",
    "firstName": "Denise",
    "lastName": "Weiner",
    "country": "United States",
    "credit_count": 899,
    "confidence_level": 99
}

POSThttps://api.cufinder.io/v1/nte

Company Email Finder API

The Company Email Finder API is a valuable resource that allows you to convert a company name into a comprehensive list of email addresses associated with that company. With this API, you can effortlessly gather the email contacts of companies, enabling you to streamline your communication efforts, enhance lead generation, and establish valuable connections within the business world.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    companyName
    Type
    string
    Description

    The name of the company.

Credit usage

If the answer is found, one credit will be deducted for each 5 emails, otherwise no credit will be deducted

Request

POST
/v1/nte
curl --location 'https://api.cufinder.io/v1/nte' \
     --header 'Content-Type: application/json' \
     --data '{
        "apiKey": "api_key",
        "companyName": "stripe"
    }'

Response

{
    "query": "stripe",
    "emails": [
        "privacy@stripe.com",
        "info@stripe.com",
        "sales@stripe.com",
        "tatiana@stripe.com",
        "test@stripe.com",
        "atikh@stripe.com",
        "luca.pacioli@stripe.com",
        "accommodations@stripe.com",
        "atlas@stripe.com",
        "uca.pacioli@stripe.com"
    ],
    "credit_count": 897,
    "confidence_level": 95
}

POSThttps://api.cufinder.io/v1/ntp

Company Phone Finder API

The Company Phone Finder API is a valuable resource that allows you to convert a company name into a comprehensive list of phone numbers associated with that company. With this API, you can effortlessly gather the phone numbers of companies, enabling you to streamline your communication efforts, enhance lead generation, and establish valuable connections within the business world.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    companyName
    Type
    string
    Description

    The name of the company.

Credit usage

If the answer is found, one credit will be deducted for each 5 phones, otherwise no credit will be deducted

Request

POST
/v1/etl
curl --location 'https://api.cufinder.io/v1/ntp' \
     --header 'Content-Type: application/json' \
     --data '{
        "apiKey": "api_key",
        "companyName": "stripe"
    }'

Response

{
    "query": "stripe",
    "phones": [
        "+14585552863"
    ],
    "credit_count": 895,
    "confidence_level": 94
}

POSThttps://api.cufinder.io/v1/pite

Person Email Finder API

The Person Email Finder API is a powerful tool that allows you to input a person's name and company name and retrieve contact business email address. With this API, you can effortlessly gather the email contacts of individuals, enabling you to establish direct communication, enhance outreach efforts, and foster valuable business relationships with targeted contacts.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    personName
    Type
    string
    Description

    The name of the person.

  • Name
    companyDomain
    Type
    string
    Description

    The domain of the company.

Credit usage

If the answer is found, one credit will be deducted, otherwise no credit will be deducted

Request

POST
/v1/pite
curl --location 'https://api.cufinder.io/v1/pite' \
     --header 'Content-Type: application/json' \
     --data '{
        "apiKey": "api_key",
        "personName": "Doug Black",
        "companyName": "stripe.com"
    }'

Response

{
    "email": "doug.black@stripe.com",
    "credit_count": 894,
    "confidence_level": 95
}

POSThttps://api.cufinder.io/v1/ttd

Company Twitter Page URL to Domain API

The Company Twitter Page URL to Domain API is a valuable resource that enables you to convert a company's Twitter Page URL into its corresponding domain name. With this API, you can effortlessly retrieve the website addresses of companies based on their Twitter presence, allowing you to seamlessly integrate Twitter data into your business processes and gain valuable insights into a company's online presence and branding.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    twitterURL
    Type
    string
    Description

    The Twitter page URL of the company.

Credit usage

If the answer is found, one credit will be deducted, otherwise no credit will be deducted

Request

POST
/v1/ttd
curl --location 'https://api.cufinder.io/v1/ttd' \
     --header 'Content-Type: application/json' \
     --data '{
        "apiKey": "api_key",
        "twitterURL": "https://twitter.com/stripe"
    }'

Response

{
    "query": "https://twitter.com/stripe",
    "companyDomain": "stripe.com",
    "credit_count": 893,
    "confidence_level": 94
}

POSThttps://api.cufinder.io/v1/ytd

Company Youtube Page URL to Domain API

The Company YouTube Page URL to Domain API is a useful tool that allows you to convert a company's YouTube Page URL into its corresponding domain name. With this API, you can effortlessly retrieve the website addresses of companies based on their YouTube presence, enabling you to seamlessly integrate YouTube data into your business processes and gain valuable insights into a company's online presence and video content strategy.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    youtubeURL
    Type
    string
    Description

    The Youtube page URL of the company.

Credit usage

If the answer is found, one credit will be deducted, otherwise no credit will be deducted

Request

POST
/v1/ytd
curl --location 'https://api.cufinder.io/v1/ytd' \
     --header 'Content-Type: application/json' \
     --data '{
        "apiKey": "api_key",
        "youtubeURL": "https://www.youtube.com/user/evolvetoothbrush"
    }'

Response

{
    "query": "https://www.youtube.com/user/evolvetoothbrush",
    "companyDomain": "evolveoralcare.com",
    "credit_count": 892,
    "confidence_level": 98
}

POSThttps://api.cufinder.io/v1/cone

Contact Enrichment API

The Contact Enrichment API is a powerful tool that takes a contact's LinkedIn URL as input and provides an enriched set of details, including the contact's first name, last name, job title, company name, email addresses, and phone numbers. With this API, you can effortlessly enhance your contact database, gather valuable information, and streamline your communication efforts for effective business relationship management.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    linkedin
    Type
    string
    Description

    The LinkedIn profile URL of the contact.

Credit usage

If the answer is found, three credit will be deducted, otherwise no credit will be deducted

Request

POST
/v1/cone
curl --location 'https://api.cufinder.io/v1/cone' \
     --header 'Content-Type: application/json' \
     --data '{
        "apiKey": "api_key",
        "linkedin": "https://linkedin.com/in/forrestjordan"
    }'

Response

{
    "query": "https://linkedin.com/in/forrestjordan",
    "job_title": "production engineering",
    "emails": [
        "forrestjordan@gmail.com",
        "forrest.jordan@stripe.com"
    ],
    "phones": [
        "+12058073732"
    ],
    "credit_count": 889,
    "confidence_level": 99
}

POSThttps://api.cufinder.io/v1/company_enrichment

Company Enrichment API

The Company Enrichment API is a comprehensive solution that converts a company name into enriched data, including the company's website, email addresses, phone numbers, LinkedIn URL, Facebook URL, Instagram URL, Twitter URL, and YouTube URL. With this API, you can effortlessly gather valuable information about companies, enabling you to enhance lead generation, analyze online presence, and optimize your business strategies based on a holistic understanding of a company's digital footprint.

Required attributes

  • Name
    apiKey
    Type
    string
    Description

    Your API key.

  • Name
    companyName
    Type
    string
    Description

    The name of the company.

Credit usage

If the answer is found, three credit will be deducted, otherwise no credit will be deducted

Request

POST
/v1/company_enrichment
curl --location 'https://api.cufinder.io/v1/company_enrichment' \
     --header 'Content-Type: application/json' \
     --data '{
        "apiKey": "api_key",
        "companyName": "stripe"
    }'

Response

{
    "query": "stripe",
    "domain": "stripe.com",
    "emails": [
        "sales@stripe.com",
        "atikh@stripe.com",
        "test@stripe.com",
        "info@stripe.com",
        "privacy@stripe.com"
    ],
    "phones": [
        "+14585552863"
    ],
    "facebook": "https://www.facebook.com/StripeHQ",
    "linkedin": "linkedin.com/company/stripe",
    "twitter": "https://twitter.com/stripe",
    "youtube": "https://www.youtube.com/@stripe",
    "instagram": "Not Found",
    "credit_count": 884,
    "confidence_level": 96
}