Company Funding
Provide the Company Domain or Company Name and get back the complete funding details of the company.
curl --request POST \
--url https://api.leadmagic.io/v1/companies/company-funding \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"company_name": "leadmagic",
"company_domain": "leadmagic.io"
}
'import requests
url = "https://api.leadmagic.io/v1/companies/company-funding"
payload = {
"company_name": "leadmagic",
"company_domain": "leadmagic.io"
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({company_name: 'leadmagic', company_domain: 'leadmagic.io'})
};
fetch('https://api.leadmagic.io/v1/companies/company-funding', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.leadmagic.io/v1/companies/company-funding"
payload := strings.NewReader("{\n \"company_name\": \"leadmagic\",\n \"company_domain\": \"leadmagic.io\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.leadmagic.io/v1/companies/company-funding",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'company_name' => 'leadmagic',
'company_domain' => 'leadmagic.io'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}{
"basicInfo": {
"companyName": "LeadMagic Inc",
"description": "Example Robotics provides enterprise software solutions for B2B companies.",
"shortName": "LeadMagic",
"founded": "2015",
"headquarters": {
"city": "Palo Alto",
"state": "California",
"country": "USA",
"fullAddress": "Palo Alto, California, USA"
},
"primaryDomain": "leadmagic.io",
"phone": "1-650-276-3068",
"status": "NEW",
"followers": 2422,
"ownership": "Private"
},
"financialInfo": {
"revenue": 178000000,
"formattedRevenue": "178M",
"totalFunding": 584000000,
"formattedFunding": "584M",
"lastFundingRound": {
"round": "Series E",
"date": "2021-05-01T00:00:00.000Z",
"amount": 250000000
}
},
"fundingHistory": [
{
"round": "Series E",
"date": "2021-05-01T00:00:00.000Z",
"amount": "$250,000,000",
"investors": [
"Franklin Templeton",
"Coatue",
"Sequoia",
"Thrive Capital",
"Tiger Global"
]
},
{
"round": "Series D",
"date": "2020-08-01T00:00:00.000Z",
"amount": "$200,000,000",
"investors": [
"Coatue",
"Index Ventures",
"Thrive Capital",
"Battery Ventures",
"NextWorld Capital",
"Norwest Venture Partners",
"Sequoia Capital",
"Wing Venture Capital"
]
},
{
"round": "Series C",
"date": "2019-12-01T00:00:00.000Z",
"amount": "$65,000,000",
"investors": [
"Sequoia Capital",
"Battery Ventures",
"Norwest Venture Partners",
"Wing Venture Capital",
"NextWorld Capital",
"Cisco Investments"
]
}
],
"companySize": {
"employees": 1100,
"employeeRange": "1,000 - 5,000",
"employeeGrowth": "N/A"
},
"leadership": {
"ceo": {
"firstName": "Amit",
"lastName": "Bendov",
"designation": "Co-Founder & CEO",
"b2b_profile": "amitbendov",
"twitter": "https://twitter.com/banditmove"
}
},
"industryAndSectors": {
"industrySectors": [
"Sales Enablement Software",
"Business Intelligence (BI)"
],
"industries": [
"Software, Internet & Computer Services"
],
"technologyStack": "N/A"
},
"topCompetitors": [
{
"name": "BoostUp",
"revenue": "$6",
"employees": "85",
"totalFunding": "$425",
"headquarters": {
"city": "Santa Clara",
"state": "US-CA",
"country": "USA",
"fullAddress": "Santa Clara, US-CA, USA"
},
"founded": "2018-01-01T00:00:00.000Z",
"ownership": "Private",
"website": "https://www.boostup.ai"
},
{
"name": "ExecVision",
"revenue": "$43",
"employees": "31",
"totalFunding": "$81",
"headquarters": {
"city": "Arlington",
"state": "US-VA",
"country": "USA",
"fullAddress": "Arlington, US-VA, USA"
},
"founded": "2015-01-01T00:00:00.000Z",
"ownership": "Private",
"website": "https://www.execvision.io"
},
{
"name": "Seismic",
"revenue": "$375",
"employees": "1,000",
"totalFunding": "$940",
"headquarters": {
"city": "San Diego",
"state": "US-CA",
"country": "USA",
"fullAddress": "San Diego, US-CA, USA"
},
"founded": "2010-01-01T00:00:00.000Z",
"ownership": "Private",
"website": "https://seismic.com"
}
],
"acquisitions": [
{
"companyName": "Vayo",
"acquisitionDate": "2020-09-01T00:00:00.000Z",
"description": "Vayo is a SaaS-based firm that analyzes, integrates and converts customer data into actionable insights for business",
"source": "https://techcrunch.com/2020/09/01/fresh-off-200m-series-d-leadmagic-acquires-early-stage-startup-vayo"
},
{
"companyName": "ONDiGO",
"acquisitionDate": "2018-04-01T00:00:00.000Z",
"description": "ONDiGO is a CRM platform that offers customer retention and management services to professionals and micro-businesses.",
"source": "https://www.prnewswire.com/news-releases/leadmagic-acquires-ondigo-to-extend-its-conversation-intelligence-platform-300630168.html"
}
],
"socialMedia": [
{
"platform": "twitter",
"url": "https://twitter.com/leadmagic"
},
{
"platform": "facebook",
"url": "https://www.facebook.com/To.LeadMagicHQ"
},
{
"platform": "b2b_profile",
"url": "leadmagichq"
}
],
"news": [
{
"title": "Example Robotics: Example Robotics Launches New Enterprise Platform",
"source": "TechCrunch",
"date": "2024-08-07T08:40:00.000Z"
},
{
"title": "Example Robotics: Example Robotics Partners with Example CRM",
"source": "Business Wire",
"date": "2024-06-26T22:15:00.000Z"
},
{
"title": "Example Robotics Named Best SaaS Solution in 2024 Industry Awards",
"source": "Forbes",
"date": "2024-06-26T00:00:00.000Z"
}
],
"pressReleases": [
{
"title": "Press Release: Example Robotics Announces Strategic Partnership with Example Robotics",
"source": "PR Newswire",
"date": "2024-10-17T22:21:00.000Z"
},
{
"title": "Press Release: Example Robotics Named a Winner in The Cloud Awards",
"source": "PR Newswire",
"date": "2024-10-09T18:28:00.000Z"
},
{
"title": "Press Release: Example Robotics Recognized as Industry Leader by Example Research",
"source": "Business Wire",
"date": "2024-09-04T18:50:00.000Z"
}
],
"keyHighlights": [
{
"type": "partnership",
"text": "Example Robotics Announces Strategic Partnership with Example Robotics",
"date": "2024-10-17T22:21:00.000Z",
"src": "https://www.prnewswire.com/news-releases/acme-corp-announces-partnership-302271451.html",
"source": "PR Newswire"
},
{
"type": "award",
"text": "Example Robotics Named a Winner in The Cloud Awards",
"date": "2024-10-09T18:28:00.000Z",
"src": "https://www.prnewswire.com/news-releases/acme-corp-cloud-awards-302271452.html",
"source": "PR Newswire"
}
],
"summarySection": "Example Robotics provides enterprise software solutions for B2B companies. Example Robotics was founded in 2018. Example Robotics's headquarters is located in San Francisco, California, USA.",
"credits_consumed": 4
}{
"success": false,
"errors": [
{
"type": "https://api.leadmagic.io/errors/validation_error",
"title": "Request validation failed. Check your input parameters.",
"status": 400,
"code": "validation_error",
"param": [
"email"
],
"detail": "Email format is invalid. Expected format: user@domain.com",
"action": "Provide a valid email address in the 'email' field.",
"docs": "https://leadmagic.io/docs/api-reference/errors"
}
],
"meta": {
"request_id": "ea6e3248-f4d2-437d-bca3-20881b529129",
"timestamp": "2024-02-01T12:00:00.000Z"
}
}{
"success": false,
"errors": [
{
"type": "https://api.leadmagic.io/errors/missing_authentication",
"title": "Authentication required. Provide a valid API key in the X-API-Key header (case-insensitive).",
"status": 401,
"code": "missing_authentication",
"docs": "https://leadmagic.io/docs/api-reference/authentication"
}
],
"meta": {
"request_id": "ea6e3248-f4d2-437d-bca3-20881b529129",
"timestamp": "2024-02-01T12:00:00.000Z"
}
}{
"success": false,
"errors": [
{
"type": "https://api.leadmagic.io/errors/insufficient_credits",
"title": "Insufficient credits: need 5, have 2.50. Add credits to continue.",
"status": 402,
"code": "insufficient_credits",
"detail": "This request requires 5 credit(s) but your account only has 2.50 credits remaining.",
"action": "Add credits to your account at https://app.leadmagic.io/billing or contact support@leadmagic.io for enterprise plans.",
"docs": "https://leadmagic.io/docs/api-reference/credits",
"context": {
"credits_required": 5,
"credits_available": 2.5,
"credits_needed": 2.5
}
}
],
"meta": {
"request_id": "ea6e3248-f4d2-437d-bca3-20881b529129",
"timestamp": "2024-02-01T12:00:00.000Z"
}
}{
"success": false,
"errors": [
{
"type": "https://api.leadmagic.io/errors/resource_not_found",
"title": "Resource not found.",
"status": 404,
"code": "resource_not_found",
"docs": "https://leadmagic.io/docs/api-reference/errors"
}
],
"meta": {
"request_id": "ea6e3248-f4d2-437d-bca3-20881b529129",
"timestamp": "2024-02-01T12:00:00.000Z"
}
}{
"success": false,
"errors": [
{
"type": "https://api.leadmagic.io/errors/rate_limit_exceeded",
"title": "Rate limit exceeded: 300 requests per 1 minute. Wait and try again.",
"status": 429,
"code": "rate_limit_exceeded",
"detail": "You have exceeded the maximum allowed request rate. Please wait before making additional requests.",
"action": "Wait 42 seconds before retrying. Consider implementing exponential backoff.",
"docs": "https://leadmagic.io/docs/api-reference/rate-limits",
"context": {
"limit": 300,
"window": "1 minute",
"remaining": 0,
"reset_at": 1706745642,
"retry_after_seconds": 42
}
}
],
"meta": {
"request_id": "ea6e3248-f4d2-437d-bca3-20881b529129",
"timestamp": "2024-02-01T12:00:00.000Z"
}
}{
"success": false,
"errors": [
{
"type": "https://api.leadmagic.io/errors/INTERNAL_ERROR",
"title": "Something went wrong on our end. Our team has been notified and is investigating.",
"status": 500,
"code": "INTERNAL_ERROR",
"detail": "This is a temporary server error. The issue has been automatically reported to our team.",
"action": "Wait 30 seconds and retry your request. If the problem persists, contact support@leadmagic.io",
"docs": "https://leadmagic.io/docs/api-reference/errors"
}
],
"meta": {
"request_id": "ea6e3248-f4d2-437d-bca3-20881b529129",
"timestamp": "2024-02-01T12:00:00.000Z"
}
}Company Funding
Discover comprehensive funding data for companies including investment rounds, funding amounts, investor information, and leadership details.Endpoint Details
- Pricing
- Rate Limits
| Metric | Value |
|---|---|
| Cost | 4 credits per company |
| No Results | FREE if no funding data found |
Per-Endpoint Limit
| Metric | Value |
|---|---|
| Requests/Minute | 300 |
| Burst Capacity | ~5 requests/second |
Quick Example
curl -X POST 'https://api.leadmagic.io/v1/companies/company-funding' \
-H 'X-API-Key: YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"company_domain": "leadmagic.io"}'
const response = await fetch('https://api.leadmagic.io/v1/companies/company-funding', {
method: 'POST',
headers: {
'X-API-Key': 'YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({ company_domain: 'leadmagic.io' })
});
const data = await response.json();
console.log(`Total Funding: ${data.total_funding}`);
import requests
response = requests.post(
'https://api.leadmagic.io/v1/companies/company-funding',
headers={'X-API-Key': 'YOUR_API_KEY'},
json={'company_domain': 'leadmagic.io'}
)
data = response.json()
print(f"Total Funding: {data.get('total_funding', 'Unknown')}")
Request Parameters
company_domain or company_name (or both).Response
Show Funding Rounds
Show Funding Rounds
Example Response
{
"company_name": "LeadMagic",
"total_funding": "$8.7B",
"latest_round": "Series I",
"latest_round_amount": "$600M",
"latest_round_date": "2023-03-15",
"funding_rounds": [
{
"type": "Series I",
"amount": "$600M",
"date": "2023-03-15",
"investors": ["Andreessen Horowitz", "Founders Fund"]
}
],
"investors": ["Andreessen Horowitz", "Sequoia Capital", "General Catalyst"],
"leadership": {
"ceo": {
"firstName": "Alex",
"lastName": "Rivera",
"designation": "CEO & Co-Founder",
"b2b_profile": "linkedin.com/in/patrickcollison"
}
},
"credits_consumed": 4,
"message": "Funding data found."
}
Success Messages
| Message | Meaning | Cost |
|---|---|---|
Funding data found. | Full funding data returned | 4 credits |
No funding data found for this company. | No funding records available | FREE |
Best Practices
Target recently funded companies
Target recently funded companies
Track investor portfolios
Track investor portfolios
Use for lead scoring
Use for lead scoring
Use Cases
Sales Prioritization
Market Intelligence
Lead Scoring
Account Research
Authorizations
Your LeadMagic API key. Header name is case-insensitive (X-API-Key, X-API-KEY, x-api-key all work).
Body
Response
Successful response with company funding details
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
[ { "round": "Series E", "date": "2021-05-01T00:00:00.000Z", "amount": "$250,000,000", "investors": [ "Franklin Templeton", "Coatue", "Sequoia", "Thrive Capital", "Tiger Global" ] }, { "round": "Series D", "date": "2020-08-01T00:00:00.000Z", "amount": "$200,000,000", "investors": [ "Coatue", "Index Ventures", "Thrive Capital", "Battery Ventures", "NextWorld Capital", "Norwest Venture Partners", "Sequoia Capital", "Wing Venture Capital" ] }, { "round": "Series C", "date": "2019-12-01T00:00:00.000Z", "amount": "$65,000,000", "investors": [ "Sequoia Capital", "Battery Ventures", "Norwest Venture Partners", "Wing Venture Capital", "NextWorld Capital", "Cisco Investments" ] } ]
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
[ { "name": "BoostUp", "revenue": "$6", "employees": "85", "totalFunding": "$425", "headquarters": { "city": "Santa Clara", "state": "US-CA", "country": "USA", "fullAddress": "Santa Clara, US-CA, USA" }, "founded": "2018-01-01T00:00:00.000Z", "ownership": "Private", "website": "https://www.boostup.ai" }, { "name": "ExecVision", "revenue": "$43", "employees": "31", "totalFunding": "$81", "headquarters": { "city": "Arlington", "state": "US-VA", "country": "USA", "fullAddress": "Arlington, US-VA, USA" }, "founded": "2015-01-01T00:00:00.000Z", "ownership": "Private", "website": "https://www.execvision.io" }, { "name": "Seismic", "revenue": "$375", "employees": "1,000", "totalFunding": "$940", "headquarters": { "city": "San Diego", "state": "US-CA", "country": "USA", "fullAddress": "San Diego, US-CA, USA" }, "founded": "2010-01-01T00:00:00.000Z", "ownership": "Private", "website": "https://seismic.com" } ]
Show child attributes
Show child attributes
[ { "companyName": "Vayo", "acquisitionDate": "2020-09-01T00:00:00.000Z", "description": "Vayo is a SaaS-based firm that analyzes, integrates and converts customer data into actionable insights for business", "source": "https://techcrunch.com/2020/09/01/fresh-off-200m-series-d-leadmagic-acquires-early-stage-startup-vayo" }, { "companyName": "ONDiGO", "acquisitionDate": "2018-04-01T00:00:00.000Z", "description": "ONDiGO is a CRM platform that offers customer retention and management services to professionals and micro-businesses.", "source": "https://www.prnewswire.com/news-releases/leadmagic-acquires-ondigo-to-extend-its-conversation-intelligence-platform-300630168.html" } ]
Show child attributes
Show child attributes
[ { "platform": "twitter", "url": "https://twitter.com/leadmagic" }, { "platform": "facebook", "url": "https://www.facebook.com/To.LeadMagicHQ" }, { "platform": "b2b_profile", "url": "leadmagichq" } ]
Show child attributes
Show child attributes
[ { "title": "Example Robotics: Example Robotics Launches New Enterprise Platform", "source": "TechCrunch", "date": "2024-08-07T08:40:00.000Z" }, { "title": "Example Robotics: Example Robotics Partners with Example CRM", "source": "Business Wire", "date": "2024-06-26T22:15:00.000Z" }, { "title": "Example Robotics Named Best SaaS Solution in 2024 Industry Awards", "source": "Forbes", "date": "2024-06-26T00:00:00.000Z" } ]
Show child attributes
Show child attributes
[ { "title": "Press Release: Example Robotics Announces Strategic Partnership with Example Robotics", "source": "PR Newswire", "date": "2024-10-17T22:21:00.000Z" }, { "title": "Press Release: Example Robotics Named a Winner in The Cloud Awards", "source": "PR Newswire", "date": "2024-10-09T18:28:00.000Z" }, { "title": "Press Release: Example Robotics Recognized as Industry Leader by Example Research", "source": "Business Wire", "date": "2024-09-04T18:50:00.000Z" } ]
Show child attributes
Show child attributes
[ { "type": "partnership", "text": "Example Robotics Announces Strategic Partnership with Example Robotics", "date": "2024-10-17T22:21:00.000Z", "src": "https://www.prnewswire.com/news-releases/acme-corp-announces-partnership-302271451.html", "source": "PR Newswire" }, { "type": "award", "text": "Example Robotics Named a Winner in The Cloud Awards", "date": "2024-10-09T18:28:00.000Z", "src": "https://www.prnewswire.com/news-releases/acme-corp-cloud-awards-302271452.html", "source": "PR Newswire" } ]
"Example Robotics provides enterprise software solutions for B2B companies. Example Robotics was founded in 2018. Example Robotics's headquarters is located in San Francisco, California, USA."
4
Was this page helpful?
curl --request POST \
--url https://api.leadmagic.io/v1/companies/company-funding \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"company_name": "leadmagic",
"company_domain": "leadmagic.io"
}
'import requests
url = "https://api.leadmagic.io/v1/companies/company-funding"
payload = {
"company_name": "leadmagic",
"company_domain": "leadmagic.io"
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({company_name: 'leadmagic', company_domain: 'leadmagic.io'})
};
fetch('https://api.leadmagic.io/v1/companies/company-funding', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.leadmagic.io/v1/companies/company-funding"
payload := strings.NewReader("{\n \"company_name\": \"leadmagic\",\n \"company_domain\": \"leadmagic.io\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.leadmagic.io/v1/companies/company-funding",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'company_name' => 'leadmagic',
'company_domain' => 'leadmagic.io'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}{
"basicInfo": {
"companyName": "LeadMagic Inc",
"description": "Example Robotics provides enterprise software solutions for B2B companies.",
"shortName": "LeadMagic",
"founded": "2015",
"headquarters": {
"city": "Palo Alto",
"state": "California",
"country": "USA",
"fullAddress": "Palo Alto, California, USA"
},
"primaryDomain": "leadmagic.io",
"phone": "1-650-276-3068",
"status": "NEW",
"followers": 2422,
"ownership": "Private"
},
"financialInfo": {
"revenue": 178000000,
"formattedRevenue": "178M",
"totalFunding": 584000000,
"formattedFunding": "584M",
"lastFundingRound": {
"round": "Series E",
"date": "2021-05-01T00:00:00.000Z",
"amount": 250000000
}
},
"fundingHistory": [
{
"round": "Series E",
"date": "2021-05-01T00:00:00.000Z",
"amount": "$250,000,000",
"investors": [
"Franklin Templeton",
"Coatue",
"Sequoia",
"Thrive Capital",
"Tiger Global"
]
},
{
"round": "Series D",
"date": "2020-08-01T00:00:00.000Z",
"amount": "$200,000,000",
"investors": [
"Coatue",
"Index Ventures",
"Thrive Capital",
"Battery Ventures",
"NextWorld Capital",
"Norwest Venture Partners",
"Sequoia Capital",
"Wing Venture Capital"
]
},
{
"round": "Series C",
"date": "2019-12-01T00:00:00.000Z",
"amount": "$65,000,000",
"investors": [
"Sequoia Capital",
"Battery Ventures",
"Norwest Venture Partners",
"Wing Venture Capital",
"NextWorld Capital",
"Cisco Investments"
]
}
],
"companySize": {
"employees": 1100,
"employeeRange": "1,000 - 5,000",
"employeeGrowth": "N/A"
},
"leadership": {
"ceo": {
"firstName": "Amit",
"lastName": "Bendov",
"designation": "Co-Founder & CEO",
"b2b_profile": "amitbendov",
"twitter": "https://twitter.com/banditmove"
}
},
"industryAndSectors": {
"industrySectors": [
"Sales Enablement Software",
"Business Intelligence (BI)"
],
"industries": [
"Software, Internet & Computer Services"
],
"technologyStack": "N/A"
},
"topCompetitors": [
{
"name": "BoostUp",
"revenue": "$6",
"employees": "85",
"totalFunding": "$425",
"headquarters": {
"city": "Santa Clara",
"state": "US-CA",
"country": "USA",
"fullAddress": "Santa Clara, US-CA, USA"
},
"founded": "2018-01-01T00:00:00.000Z",
"ownership": "Private",
"website": "https://www.boostup.ai"
},
{
"name": "ExecVision",
"revenue": "$43",
"employees": "31",
"totalFunding": "$81",
"headquarters": {
"city": "Arlington",
"state": "US-VA",
"country": "USA",
"fullAddress": "Arlington, US-VA, USA"
},
"founded": "2015-01-01T00:00:00.000Z",
"ownership": "Private",
"website": "https://www.execvision.io"
},
{
"name": "Seismic",
"revenue": "$375",
"employees": "1,000",
"totalFunding": "$940",
"headquarters": {
"city": "San Diego",
"state": "US-CA",
"country": "USA",
"fullAddress": "San Diego, US-CA, USA"
},
"founded": "2010-01-01T00:00:00.000Z",
"ownership": "Private",
"website": "https://seismic.com"
}
],
"acquisitions": [
{
"companyName": "Vayo",
"acquisitionDate": "2020-09-01T00:00:00.000Z",
"description": "Vayo is a SaaS-based firm that analyzes, integrates and converts customer data into actionable insights for business",
"source": "https://techcrunch.com/2020/09/01/fresh-off-200m-series-d-leadmagic-acquires-early-stage-startup-vayo"
},
{
"companyName": "ONDiGO",
"acquisitionDate": "2018-04-01T00:00:00.000Z",
"description": "ONDiGO is a CRM platform that offers customer retention and management services to professionals and micro-businesses.",
"source": "https://www.prnewswire.com/news-releases/leadmagic-acquires-ondigo-to-extend-its-conversation-intelligence-platform-300630168.html"
}
],
"socialMedia": [
{
"platform": "twitter",
"url": "https://twitter.com/leadmagic"
},
{
"platform": "facebook",
"url": "https://www.facebook.com/To.LeadMagicHQ"
},
{
"platform": "b2b_profile",
"url": "leadmagichq"
}
],
"news": [
{
"title": "Example Robotics: Example Robotics Launches New Enterprise Platform",
"source": "TechCrunch",
"date": "2024-08-07T08:40:00.000Z"
},
{
"title": "Example Robotics: Example Robotics Partners with Example CRM",
"source": "Business Wire",
"date": "2024-06-26T22:15:00.000Z"
},
{
"title": "Example Robotics Named Best SaaS Solution in 2024 Industry Awards",
"source": "Forbes",
"date": "2024-06-26T00:00:00.000Z"
}
],
"pressReleases": [
{
"title": "Press Release: Example Robotics Announces Strategic Partnership with Example Robotics",
"source": "PR Newswire",
"date": "2024-10-17T22:21:00.000Z"
},
{
"title": "Press Release: Example Robotics Named a Winner in The Cloud Awards",
"source": "PR Newswire",
"date": "2024-10-09T18:28:00.000Z"
},
{
"title": "Press Release: Example Robotics Recognized as Industry Leader by Example Research",
"source": "Business Wire",
"date": "2024-09-04T18:50:00.000Z"
}
],
"keyHighlights": [
{
"type": "partnership",
"text": "Example Robotics Announces Strategic Partnership with Example Robotics",
"date": "2024-10-17T22:21:00.000Z",
"src": "https://www.prnewswire.com/news-releases/acme-corp-announces-partnership-302271451.html",
"source": "PR Newswire"
},
{
"type": "award",
"text": "Example Robotics Named a Winner in The Cloud Awards",
"date": "2024-10-09T18:28:00.000Z",
"src": "https://www.prnewswire.com/news-releases/acme-corp-cloud-awards-302271452.html",
"source": "PR Newswire"
}
],
"summarySection": "Example Robotics provides enterprise software solutions for B2B companies. Example Robotics was founded in 2018. Example Robotics's headquarters is located in San Francisco, California, USA.",
"credits_consumed": 4
}{
"success": false,
"errors": [
{
"type": "https://api.leadmagic.io/errors/validation_error",
"title": "Request validation failed. Check your input parameters.",
"status": 400,
"code": "validation_error",
"param": [
"email"
],
"detail": "Email format is invalid. Expected format: user@domain.com",
"action": "Provide a valid email address in the 'email' field.",
"docs": "https://leadmagic.io/docs/api-reference/errors"
}
],
"meta": {
"request_id": "ea6e3248-f4d2-437d-bca3-20881b529129",
"timestamp": "2024-02-01T12:00:00.000Z"
}
}{
"success": false,
"errors": [
{
"type": "https://api.leadmagic.io/errors/missing_authentication",
"title": "Authentication required. Provide a valid API key in the X-API-Key header (case-insensitive).",
"status": 401,
"code": "missing_authentication",
"docs": "https://leadmagic.io/docs/api-reference/authentication"
}
],
"meta": {
"request_id": "ea6e3248-f4d2-437d-bca3-20881b529129",
"timestamp": "2024-02-01T12:00:00.000Z"
}
}{
"success": false,
"errors": [
{
"type": "https://api.leadmagic.io/errors/insufficient_credits",
"title": "Insufficient credits: need 5, have 2.50. Add credits to continue.",
"status": 402,
"code": "insufficient_credits",
"detail": "This request requires 5 credit(s) but your account only has 2.50 credits remaining.",
"action": "Add credits to your account at https://app.leadmagic.io/billing or contact support@leadmagic.io for enterprise plans.",
"docs": "https://leadmagic.io/docs/api-reference/credits",
"context": {
"credits_required": 5,
"credits_available": 2.5,
"credits_needed": 2.5
}
}
],
"meta": {
"request_id": "ea6e3248-f4d2-437d-bca3-20881b529129",
"timestamp": "2024-02-01T12:00:00.000Z"
}
}{
"success": false,
"errors": [
{
"type": "https://api.leadmagic.io/errors/resource_not_found",
"title": "Resource not found.",
"status": 404,
"code": "resource_not_found",
"docs": "https://leadmagic.io/docs/api-reference/errors"
}
],
"meta": {
"request_id": "ea6e3248-f4d2-437d-bca3-20881b529129",
"timestamp": "2024-02-01T12:00:00.000Z"
}
}{
"success": false,
"errors": [
{
"type": "https://api.leadmagic.io/errors/rate_limit_exceeded",
"title": "Rate limit exceeded: 300 requests per 1 minute. Wait and try again.",
"status": 429,
"code": "rate_limit_exceeded",
"detail": "You have exceeded the maximum allowed request rate. Please wait before making additional requests.",
"action": "Wait 42 seconds before retrying. Consider implementing exponential backoff.",
"docs": "https://leadmagic.io/docs/api-reference/rate-limits",
"context": {
"limit": 300,
"window": "1 minute",
"remaining": 0,
"reset_at": 1706745642,
"retry_after_seconds": 42
}
}
],
"meta": {
"request_id": "ea6e3248-f4d2-437d-bca3-20881b529129",
"timestamp": "2024-02-01T12:00:00.000Z"
}
}{
"success": false,
"errors": [
{
"type": "https://api.leadmagic.io/errors/INTERNAL_ERROR",
"title": "Something went wrong on our end. Our team has been notified and is investigating.",
"status": 500,
"code": "INTERNAL_ERROR",
"detail": "This is a temporary server error. The issue has been automatically reported to our team.",
"action": "Wait 30 seconds and retry your request. If the problem persists, contact support@leadmagic.io",
"docs": "https://leadmagic.io/docs/api-reference/errors"
}
],
"meta": {
"request_id": "ea6e3248-f4d2-437d-bca3-20881b529129",
"timestamp": "2024-02-01T12:00:00.000Z"
}
}