Company Funding and Traffic
This API provides a streamlined interface to fetch structured company funding and traffic data, making it easy to power your applications with up-to-date business intelligence.
cURL 'https://api.enrich.so/v1/api/company-funding-plus?domain=<example.com>' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json'
const axios = require('axios');
axios.get('https://api.enrich.so/v1/api/company-funding-plus?domain=<example.com>', {
headers: {accept: 'application/json', Authorization: 'Bearer <token>'}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});
import requests
payload = {'domain': 'example.com'}
headers = {'accept': 'application/json', 'authorization': 'Bearer <token>'}
resp = requests.get('https://api.enrich.so/v1/api/company-funding-plus', params=payload, headers=headers)
print (resp.text)
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("https://api.enrich.so/v1/api/company-funding-plus?domain=<example.com>")
.get()
.addHeader("accept", "application/json")
.addHeader("authorization", "Bearer <token>")
.build();
Response response = client.newCall(request).execute();
require 'uri'
require 'net/http'
url = URI("https://api.enrich.so/v1/api/company-funding-plus?domain=<example.com>")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["accept"] = 'application/json'
request["authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.enrich.so/v1/api/company-funding-plus?domain=<example.com>",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"accept: application/json",
"authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
Example response
{
"success": true,
"message": "Company funding and traffic data found.",
"data": {
"companyName": "Clay",
"legalName": "Clay Labs Inc.",
"companyDescription": "Clay provides innovative tools that combine various data sources to support growth teams in reaching their ideal customers. The platform enables deep customer research by integrating first-party, intent, and third-party data from over 100 sources.",
"companyWebsite": "https://clay.com",
"socialMedia": {
"linkedin": "https://www.linkedin.com/company/clay-run",
"twitter": "https://twitter.com/clayrunhq"
},
"establishmentDetails": {
"foundedOn": "2017-07-25",
"employeeCountRange": "51-100",
"operatingStatus": "active",
"companyType": "For Profit"
},
"headquartersLocation": "New York",
"industryClassification": [
"Artificial Intelligence (AI)",
"Developer Tools",
"Information Technology",
"Productivity Tools",
"Software"
],
"keyPersonnel": {
"founders": [
"Kareem Amin",
"Nicolae Rusan",
"Varun Anand"
],
"ceo": "Kareem Amin",
"executives": [
{
"name": "Kareem Amin",
"title": "Co-Founder & CEO"
},
{
"name": "Nicolae Rusan",
"title": "Co-Founder"
},
{
"name": "Varun Anand",
"title": "Co-Founder & Head of Ops"
},
{
"name": "Pranav Mital",
"title": "Growth"
},
{
"name": "Justin E. Morgan",
"title": "Certified Expert & Club Lead"
},
{
"name": "Xavier Caffrey",
"title": "Enteprise Partner"
},
{
"name": "Deep Singh",
"title": "Clay Maker (Certified Expert)"
},
{
"name": "Michel Lieben",
"title": "Certified Expert"
}
]
},
"fundingOverview": {
"totalFundingRaised": 102000000,
"fundingCurrency": "USD",
"lastFundingRoundType": "Series B",
"lastFundingRoundDate": "2025-01-22",
"fundingRounds": [
{
"roundType": "Clay",
"announcedOn": "2025-01-22",
"moneyRaised": 40000000,
"currency": "USD",
"leadInvestors": [
"Meritech Capital Partners"
]
},
{
"roundType": "Clay",
"announcedOn": "2024-06-27",
"moneyRaised": 46000000,
"currency": "USD",
"leadInvestors": [
"Meritech Capital Partners"
]
},
{
"roundType": "Clay",
"announcedOn": "2019-06-01",
"moneyRaised": 13500000,
"currency": "USD",
"leadInvestors": [
"Sequoia Capital"
]
},
{
"roundType": "Clay",
"announcedOn": "2017-06-15",
"moneyRaised": 2500000,
"currency": "USD",
"leadInvestors": [
"First Round Capital"
]
}
],
"numberOfInvestors": 8,
"knownInvestors": [
"First Round Capital",
"BoxGroup",
"Meritech Capital Partners",
"Sequoia Capital",
"boldstart ventures",
"boldstart ventures",
"Sequoia Capital",
"BoxGroup",
"First Round Capital",
"Meritech Capital Partners"
]
},
"contactInformation": {
"email": "friends@clay.com",
"phone": null
},
"websiteTraffic": {
"monthlyVisits": 829788,
"monthlyVisitsPctChange": 0.143265753198173
},
"itSpending": {
"estimatedITSpend": 486249,
"currency": "USD"
},
"rankings": {
"overallRank": 74
},
"diversitySpotlights": [
"Middle Eastern / North African Founded"
]
},
"total_credits": 59025,
"credits_used": 37187.44999999969,
"credits_remaining": 21837.55000000031
}
Status code: 404 NOT FOUND
{
"error": true,
"message": "Failed to fetch company funding and traffic data."
}
Last updated