curl --request POST \
--url https://app.tryspecter.com/api/v1/companies \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"domain": "stripe.com"
}
'import requests
url = "https://app.tryspecter.com/api/v1/companies"
payload = { "domain": "stripe.com" }
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({domain: 'stripe.com'})
};
fetch('https://app.tryspecter.com/api/v1/companies', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.tryspecter.com/api/v1/companies",
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([
'domain' => 'stripe.com'
]),
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;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.tryspecter.com/api/v1/companies"
payload := strings.NewReader("{\n \"domain\": \"stripe.com\"\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))
}HttpResponse<String> response = Unirest.post("https://app.tryspecter.com/api/v1/companies")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"domain\": \"stripe.com\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.tryspecter.com/api/v1/companies")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"domain\": \"stripe.com\"\n}"
response = http.request(request)
puts response.read_body[
{
"id": "5e3bc2b700c8f4c966ad2bbd",
"website": {
"domain": "stripe.com",
"url": "https://stripe.com",
"domain_aliases": [
"revolut.me"
]
},
"hq": {
"city": "South San Francisco",
"state": "California",
"country": "United States",
"region": "North America",
"continent": "North America",
"regions": [
"San Francisco Bay Area"
]
},
"contact": {
"phone_number": "+1 555 000 0000",
"email": "jane.doe@example.com"
},
"funding": {
"total_funding_usd": 10440247725,
"last_funding_usd": 2500000000,
"last_funding_date": "2026-03-09",
"last_funding_type": "angel",
"round_count": 26,
"round_details": [
{
"date": "2009-08-22",
"investors": [
"Y Combinator"
],
"type": "angel",
"raised": 2000000
}
],
"post_money_valuation_usd": 159000000000
},
"web": {
"visits": 121170099,
"popularity_rank": 327,
"top_country": "United States",
"bounce_rate": 55.49,
"bounce_rate_3mo_change": 1,
"pages_per_visit": 3.2623982429504395,
"pages_per_visit_3mo_change": 0,
"session_duration": 166,
"session_duration_3mo_change": -9,
"traffic_source": "Mail: 3.0%; Direct: 38.0%; Referrals: 39.0%",
"country_breakdown": "United States 29.61023449897766%; United Kingdom 7.961041480302811%; India 4.983578994870186%; France 4.563024640083313%; Canada 3.6161303520202637%"
},
"reviews": {
"g2": {
"products": [
{
"product_name": "Recko",
"url": "https://www.g2.com/products/recko-io-recko/reviews",
"review_count": 1,
"rating": 2.5
}
],
"rating_avg": 4.27,
"review_count": 977
},
"trustpilot": {
"url": "https://www.trustpilot.com/review/stripe.com",
"review_count": 17200,
"review_avg": 1.7
},
"chrome_extensions": {
"products": [
{
"url": "https://chromewebstore.google.com/detail/hedgehog-customer-extension/fdafneoiangoeinaeoigneon",
"name": "Hedgehog Customer Extension",
"review_count": 15,
"rating": 3.5,
"user_count": 3.5,
"overall_rank": 120,
"is_featured": false
}
],
"rating_avg": 0,
"review_count": 0,
"user_count": 0
},
"glassdoor": {
"url": "https://www.glassdoor.com/Overview/Working-at-Stripe-EI_IE671932.11,17.htm",
"rating": 3.7,
"reviews": 1479,
"leadership_approval": 0.82
}
},
"socials": {
"twitter": {
"url": "x.com/stripe",
"follower_count": 285274
},
"facebook": {
"url": "facebook.com/stripehq"
},
"linkedin": {
"url": "linkedin.com/company/stripe",
"follower_count": 1493677
},
"itunes": {
"url": "apps.apple.com/sa/app/hedgehog_analytics/id34454543",
"app_id": "hh3242533",
"review_count": 98686,
"rating": 4.650000095367432
},
"googleplay": {
"url": "play.google.com/store/apps/details?id=com.hedgehog_analytics",
"app_id": "hedgehog_analytics",
"review_count": 32800,
"rating": 4.400000095367432,
"install_count": 5000
},
"instagram": {
"url": "instagram.com/stripehq",
"follower_count": 0,
"following_count": 0
},
"crunchbase": {
"url": "crunchbase.com/organization/stripe"
},
"pitchbook": {
"url": "pitchbook.com/profiles/company/54782-29"
}
},
"organization_name": "Stripe",
"organization_rank": 459,
"organization_name_aliases": [
"Porcupine, Analytics",
"Procupine AI"
],
"primary_role": "company",
"roles": [
"company"
],
"description": "Stripe provides programmable financial infrastructure that lets businesses accept payments, manage billing, and embed financial services into their products. It delivers this via developer-friendly APIs and products including Checkout, Elements, Payment Links, and the Stripe Dashboard, plus integrations for platforms and marketplaces. The platform supports a range of billing models, global payment methods and currencies, and fraud-prevention tools. Stripe is offered as cloud software for companies from startups to large enterprises and is used to power online and in-person commerce worldwide.",
"tagline": "Stripe provides financial infrastructure for businesses to accept payments and grow revenue.",
"customer_focus": "b2c",
"business_models": [
"usage-based",
"financial-services",
"saas"
],
"certifications": [
"HIPAA",
"GDPR",
"SOC 2",
"B Corp",
"ISO 27001"
],
"customer_profile": "Companies accepting payments and managing revenue",
"traction_highlights": "500M+ API requests per day, 99.999% uptime, 47+ countries, 135+ currencies",
"reported_clients": [
"67fd9884fdd1ef17d57ce8e8",
"6436a9450e469875f36d1bfa",
"63217577ee34accf6616e328",
"60424b664ddab8d8bf3cc359",
"5f0c06d50eb04dccca13868b",
"5e3bc29600c8f4c966acbdd9",
"5e3bc25700c8f4c966abda2f",
"5e3bc11000c8f4c966a72d6f",
"5e3bc07400c8f4c966a4fdd5",
"5e3bc07300c8f4c966a4f552"
],
"last_updated": "2026-06-30",
"tags": [
"API",
"Billing",
"Connect",
"Financial Infrastructure",
"Fraud Prevention",
"Payments",
"Revenue Automation",
"SaaS"
],
"industry": [
"Financial Services",
"Financial Technology"
],
"tech_verticals": [
[
"Blockchain, Crypto & Web3",
"Crypto Exchanges and Trading Infrastructure"
]
],
"operating_status": "active",
"highlights": [
"headcount_surge",
"no_recent_funding",
"strong_headcount_growth",
"strong_social_growth",
"strong_web_traffic_growth",
"top_tier_investors"
],
"new_highlights": [
"headcount_surge",
"strong_headcount_growth",
"strong_social_growth",
"strong_web_traffic_growth",
"top_tier_investors"
],
"regions": [
"North America"
],
"founded_year": 2010,
"founders": [
"Asta L.",
"David Li",
"Liz Fitzgerald"
],
"founder_info": [
{
"specter_person_id": "per_485764e6c22d1ace874937fa",
"full_name": "Liz Fitzgerald",
"title": "Equate Lead & Co-founder",
"departments": [
"Senior Leadership"
],
"seniority": "Executive Level"
}
],
"founder_count": 3,
"employee_count": 15841,
"employee_count_range": "10001+",
"investors": [
"AXA Group",
"Aaron Levie",
"Abstract Labs LLC",
"All Blue Capital",
"Allen & Company",
"Allianz X",
"Alto",
"Alven",
"Amex Ventures",
"Andreessen Horowitz"
],
"investor_count": 72,
"patent_count": 292,
"trademark_count": 104,
"acquisition": {
"acquirer": "Stripe",
"date": "2019-04-17",
"amount_usd": 500000
},
"ipo": [
{
"wentPublicOn": "2023-04-26",
"stockExchange": "bvmf",
"stockSymbol": "AIRB34",
"sharePrice": 68,
"valuationPrice": 40626000000,
"raisedAmount": 3488400000
}
],
"growth_stage": "growth_stage",
"technologies": [
"CDN JS",
"Cloudflare JS",
"CrUX Top 50m",
"DNSSEC",
"Font Awesome",
"Google Font API",
"Google Maps",
"IPv6",
"Mobile Non Scaleable Content",
"jsDelivr"
],
"it_spend": 418200000,
"awards": [
{
"award_name": "CNBC Disruptor 50",
"award_details": "Rank 3",
"award_year": 2024,
"award_org": "CNBC",
"award_link": "https://www.cnbc.com/2024/05/14/these-are-the-2024-cnbc-disruptor-50-companies.html",
"logo_url": "https://specter-company-logo.s3.amazonaws.com/cnbc.com.jpeg"
}
],
"award_count": 6,
"news": [
{
"date": "2025-01-01",
"title": "Hedgehog Analytics set to transform data-driven decision making in 2025",
"url": "https://technews.com/2025/hedgehog-analytics-vision",
"publisher": "TechNews Ltd"
}
],
"traction_metrics": {
"web_visits": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"popularity_rank": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"employee_count": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"linkedin_followers": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"twitter_followers": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"instagram_followers": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"itunes_reviews": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"googleplay_reviews": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"app_downloads": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"g2_reviews": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"trustpilot_reviews": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"chrome_extensions_reviews": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"chrome_extensions_users": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"glassdoor_rating": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"glassdoor_reviews": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
}
},
"specter_strategic_signal_ids": [
"adced32f-8a8b-495f-a8f3-333449769736"
],
"founder_highlights": [
"fortune_500_experience",
"major_tech_experience",
"prior_vc_backed_experience",
"prior_vc_backed_founder",
"serial_founder",
"strong_technical_background",
"top_university",
"vc_backed_founder"
],
"team_department_breakdown": [
{
"department": "BD & Marketing",
"percentage": 0.16
}
],
"team_location_breakdown": [
{
"country": "Algeria",
"employee_count": 1
}
]
}
]Enrich company
Look up and enrich companies by a known identifier - website, domain, LinkedIn, or Crunchbase. Returns the most current data Specter holds for each match.
What you need
One external identifier for the company you already hold: its website, domain, LinkedIn, or Crunchbase URL (or LinkedIn numeric ID). Supply exactly one per request. You don’t need a Specter company ID; if you already have one, call Get company by ID directly.
Behaviour
- Matching by
domainincludes the primary domain and any domain aliases, so a single request can return more than one company. - No match returns an empty list, and Specter is notified to begin sourcing that company.
last_updatedshows when each company’s data was last refreshed.
What you do next
- Map the competitive set. Take the returned
idand pull the company’s rivals with Get company competitors. - See who works there. List the team and founders with Get company employees.
- Track revenue momentum. Pull the company’s revenue-signal history with Get company revenue signals.
curl --request POST \
--url https://app.tryspecter.com/api/v1/companies \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"domain": "stripe.com"
}
'import requests
url = "https://app.tryspecter.com/api/v1/companies"
payload = { "domain": "stripe.com" }
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({domain: 'stripe.com'})
};
fetch('https://app.tryspecter.com/api/v1/companies', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.tryspecter.com/api/v1/companies",
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([
'domain' => 'stripe.com'
]),
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;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.tryspecter.com/api/v1/companies"
payload := strings.NewReader("{\n \"domain\": \"stripe.com\"\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))
}HttpResponse<String> response = Unirest.post("https://app.tryspecter.com/api/v1/companies")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"domain\": \"stripe.com\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.tryspecter.com/api/v1/companies")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"domain\": \"stripe.com\"\n}"
response = http.request(request)
puts response.read_body[
{
"id": "5e3bc2b700c8f4c966ad2bbd",
"website": {
"domain": "stripe.com",
"url": "https://stripe.com",
"domain_aliases": [
"revolut.me"
]
},
"hq": {
"city": "South San Francisco",
"state": "California",
"country": "United States",
"region": "North America",
"continent": "North America",
"regions": [
"San Francisco Bay Area"
]
},
"contact": {
"phone_number": "+1 555 000 0000",
"email": "jane.doe@example.com"
},
"funding": {
"total_funding_usd": 10440247725,
"last_funding_usd": 2500000000,
"last_funding_date": "2026-03-09",
"last_funding_type": "angel",
"round_count": 26,
"round_details": [
{
"date": "2009-08-22",
"investors": [
"Y Combinator"
],
"type": "angel",
"raised": 2000000
}
],
"post_money_valuation_usd": 159000000000
},
"web": {
"visits": 121170099,
"popularity_rank": 327,
"top_country": "United States",
"bounce_rate": 55.49,
"bounce_rate_3mo_change": 1,
"pages_per_visit": 3.2623982429504395,
"pages_per_visit_3mo_change": 0,
"session_duration": 166,
"session_duration_3mo_change": -9,
"traffic_source": "Mail: 3.0%; Direct: 38.0%; Referrals: 39.0%",
"country_breakdown": "United States 29.61023449897766%; United Kingdom 7.961041480302811%; India 4.983578994870186%; France 4.563024640083313%; Canada 3.6161303520202637%"
},
"reviews": {
"g2": {
"products": [
{
"product_name": "Recko",
"url": "https://www.g2.com/products/recko-io-recko/reviews",
"review_count": 1,
"rating": 2.5
}
],
"rating_avg": 4.27,
"review_count": 977
},
"trustpilot": {
"url": "https://www.trustpilot.com/review/stripe.com",
"review_count": 17200,
"review_avg": 1.7
},
"chrome_extensions": {
"products": [
{
"url": "https://chromewebstore.google.com/detail/hedgehog-customer-extension/fdafneoiangoeinaeoigneon",
"name": "Hedgehog Customer Extension",
"review_count": 15,
"rating": 3.5,
"user_count": 3.5,
"overall_rank": 120,
"is_featured": false
}
],
"rating_avg": 0,
"review_count": 0,
"user_count": 0
},
"glassdoor": {
"url": "https://www.glassdoor.com/Overview/Working-at-Stripe-EI_IE671932.11,17.htm",
"rating": 3.7,
"reviews": 1479,
"leadership_approval": 0.82
}
},
"socials": {
"twitter": {
"url": "x.com/stripe",
"follower_count": 285274
},
"facebook": {
"url": "facebook.com/stripehq"
},
"linkedin": {
"url": "linkedin.com/company/stripe",
"follower_count": 1493677
},
"itunes": {
"url": "apps.apple.com/sa/app/hedgehog_analytics/id34454543",
"app_id": "hh3242533",
"review_count": 98686,
"rating": 4.650000095367432
},
"googleplay": {
"url": "play.google.com/store/apps/details?id=com.hedgehog_analytics",
"app_id": "hedgehog_analytics",
"review_count": 32800,
"rating": 4.400000095367432,
"install_count": 5000
},
"instagram": {
"url": "instagram.com/stripehq",
"follower_count": 0,
"following_count": 0
},
"crunchbase": {
"url": "crunchbase.com/organization/stripe"
},
"pitchbook": {
"url": "pitchbook.com/profiles/company/54782-29"
}
},
"organization_name": "Stripe",
"organization_rank": 459,
"organization_name_aliases": [
"Porcupine, Analytics",
"Procupine AI"
],
"primary_role": "company",
"roles": [
"company"
],
"description": "Stripe provides programmable financial infrastructure that lets businesses accept payments, manage billing, and embed financial services into their products. It delivers this via developer-friendly APIs and products including Checkout, Elements, Payment Links, and the Stripe Dashboard, plus integrations for platforms and marketplaces. The platform supports a range of billing models, global payment methods and currencies, and fraud-prevention tools. Stripe is offered as cloud software for companies from startups to large enterprises and is used to power online and in-person commerce worldwide.",
"tagline": "Stripe provides financial infrastructure for businesses to accept payments and grow revenue.",
"customer_focus": "b2c",
"business_models": [
"usage-based",
"financial-services",
"saas"
],
"certifications": [
"HIPAA",
"GDPR",
"SOC 2",
"B Corp",
"ISO 27001"
],
"customer_profile": "Companies accepting payments and managing revenue",
"traction_highlights": "500M+ API requests per day, 99.999% uptime, 47+ countries, 135+ currencies",
"reported_clients": [
"67fd9884fdd1ef17d57ce8e8",
"6436a9450e469875f36d1bfa",
"63217577ee34accf6616e328",
"60424b664ddab8d8bf3cc359",
"5f0c06d50eb04dccca13868b",
"5e3bc29600c8f4c966acbdd9",
"5e3bc25700c8f4c966abda2f",
"5e3bc11000c8f4c966a72d6f",
"5e3bc07400c8f4c966a4fdd5",
"5e3bc07300c8f4c966a4f552"
],
"last_updated": "2026-06-30",
"tags": [
"API",
"Billing",
"Connect",
"Financial Infrastructure",
"Fraud Prevention",
"Payments",
"Revenue Automation",
"SaaS"
],
"industry": [
"Financial Services",
"Financial Technology"
],
"tech_verticals": [
[
"Blockchain, Crypto & Web3",
"Crypto Exchanges and Trading Infrastructure"
]
],
"operating_status": "active",
"highlights": [
"headcount_surge",
"no_recent_funding",
"strong_headcount_growth",
"strong_social_growth",
"strong_web_traffic_growth",
"top_tier_investors"
],
"new_highlights": [
"headcount_surge",
"strong_headcount_growth",
"strong_social_growth",
"strong_web_traffic_growth",
"top_tier_investors"
],
"regions": [
"North America"
],
"founded_year": 2010,
"founders": [
"Asta L.",
"David Li",
"Liz Fitzgerald"
],
"founder_info": [
{
"specter_person_id": "per_485764e6c22d1ace874937fa",
"full_name": "Liz Fitzgerald",
"title": "Equate Lead & Co-founder",
"departments": [
"Senior Leadership"
],
"seniority": "Executive Level"
}
],
"founder_count": 3,
"employee_count": 15841,
"employee_count_range": "10001+",
"investors": [
"AXA Group",
"Aaron Levie",
"Abstract Labs LLC",
"All Blue Capital",
"Allen & Company",
"Allianz X",
"Alto",
"Alven",
"Amex Ventures",
"Andreessen Horowitz"
],
"investor_count": 72,
"patent_count": 292,
"trademark_count": 104,
"acquisition": {
"acquirer": "Stripe",
"date": "2019-04-17",
"amount_usd": 500000
},
"ipo": [
{
"wentPublicOn": "2023-04-26",
"stockExchange": "bvmf",
"stockSymbol": "AIRB34",
"sharePrice": 68,
"valuationPrice": 40626000000,
"raisedAmount": 3488400000
}
],
"growth_stage": "growth_stage",
"technologies": [
"CDN JS",
"Cloudflare JS",
"CrUX Top 50m",
"DNSSEC",
"Font Awesome",
"Google Font API",
"Google Maps",
"IPv6",
"Mobile Non Scaleable Content",
"jsDelivr"
],
"it_spend": 418200000,
"awards": [
{
"award_name": "CNBC Disruptor 50",
"award_details": "Rank 3",
"award_year": 2024,
"award_org": "CNBC",
"award_link": "https://www.cnbc.com/2024/05/14/these-are-the-2024-cnbc-disruptor-50-companies.html",
"logo_url": "https://specter-company-logo.s3.amazonaws.com/cnbc.com.jpeg"
}
],
"award_count": 6,
"news": [
{
"date": "2025-01-01",
"title": "Hedgehog Analytics set to transform data-driven decision making in 2025",
"url": "https://technews.com/2025/hedgehog-analytics-vision",
"publisher": "TechNews Ltd"
}
],
"traction_metrics": {
"web_visits": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"popularity_rank": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"employee_count": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"linkedin_followers": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"twitter_followers": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"instagram_followers": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"itunes_reviews": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"googleplay_reviews": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"app_downloads": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"g2_reviews": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"trustpilot_reviews": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"chrome_extensions_reviews": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"chrome_extensions_users": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"glassdoor_rating": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
},
"glassdoor_reviews": {
"latest": 121170099,
"1mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"2mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"3mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"4mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"5mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"6mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"12mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
},
"24mo": {
"value": 118181324,
"change": 2988775,
"percentage": 2.53
}
}
},
"specter_strategic_signal_ids": [
"adced32f-8a8b-495f-a8f3-333449769736"
],
"founder_highlights": [
"fortune_500_experience",
"major_tech_experience",
"prior_vc_backed_experience",
"prior_vc_backed_founder",
"serial_founder",
"strong_technical_background",
"top_university",
"vc_backed_founder"
],
"team_department_breakdown": [
{
"department": "BD & Marketing",
"percentage": 0.16
}
],
"team_location_breakdown": [
{
"country": "Algeria",
"employee_count": 1
}
]
}
]Authorizations
Body
Supply exactly one identifier. Providing more than one returns a validation error.
Company website. Accepts http/https, with or without www.
Company domain or a domain alias - e.g. tryspecter.com returns Specter.
Company LinkedIn URL. Accepts http/https, with or without www.
Company LinkedIn numeric ID, found in LinkedIn Sales Navigator.
Full Crunchbase URL. Accepts http/https, with or without www.
Response
The list of companies that were found in the query
The Specter ID for this company, can be used in other endpoints
"5e3bc2b700c8f4c966ad2bbd"
The website information related to the company.
Show child attributes
Show child attributes
Location information about the companies HQ.
Show child attributes
Show child attributes
General contact information for the company.
Show child attributes
Show child attributes
Information about funding the company has received.
Show child attributes
Show child attributes
Metrics related to the web, user visits, popularity, etc.
Show child attributes
Show child attributes
Information about reviews of the website, and products that the company has received through different sites (G2, Trustpilot, Chrome Extensions, etc)
Show child attributes
Show child attributes
Information about different social sites.
Show child attributes
Show child attributes
The main public name for the organization.
"Stripe"
The Specter rank for this company.
459
A list of company names that are associated with this company.
["Porcupine, Analytics", "Procupine AI"]
The primary role that this company has.
company, investor, school "company"
Other roles that the company may have.
company, investor, school A description for what the company does, and who they are.
"Stripe provides programmable financial infrastructure that lets businesses accept payments, manage billing, and embed financial services into their products. It delivers this via developer-friendly APIs and products including Checkout, Elements, Payment Links, and the Stripe Dashboard, plus integrations for platforms and marketplaces. The platform supports a range of billing models, global payment methods and currencies, and fraud-prevention tools. Stripe is offered as cloud software for companies from startups to large enterprises and is used to power online and in-person commerce worldwide."
A concise description that highlights what the company does.
"Stripe provides financial infrastructure for businesses to accept payments and grow revenue."
The type of customers the company deals with.
b2b, b2c, b2b_b2c, b2c_b2b "b2c"
The business models that the company operates under. There can be up to 3 business models assigned to the same company.
["usage-based", "financial-services", "saas"]
Industry certifications like HIPAA, GDPR, and more.
[
"HIPAA",
"GDPR",
"SOC 2",
"B Corp",
"ISO 27001"
]
The company's typical customer profile to help understand the ideal customers for each company.
"Companies accepting payments and managing revenue"
Impact data reported by the clients on their growth, highlights, etc.
"500M+ API requests per day, 99.999% uptime, 47+ countries, 135+ currencies"
A list of clients the company works with-these are Specter IDs that link to other companies in our system.
[
"67fd9884fdd1ef17d57ce8e8",
"6436a9450e469875f36d1bfa",
"63217577ee34accf6616e328",
"60424b664ddab8d8bf3cc359",
"5f0c06d50eb04dccca13868b",
"5e3bc29600c8f4c966acbdd9",
"5e3bc25700c8f4c966abda2f",
"5e3bc11000c8f4c966a72d6f",
"5e3bc07400c8f4c966a4fdd5",
"5e3bc07300c8f4c966a4f552"
]
A date for when the company was last updated in Specter. Uses the format YYYY-MM-DD.
"2026-06-30"
Tags taken from different sorts that are related to the company its industry and what it does.
[
"API",
"Billing",
"Connect",
"Financial Infrastructure",
"Fraud Prevention",
"Payments",
"Revenue Automation",
"SaaS"
]
Classifies companies by their economic activity - the market they serve and the products or services they deliver. E.g: Construction, Utilities, Wholesale. There is one industry per company, with up to three levels.
[
"Financial Services",
"Financial Technology"
]
Classifies companies by the technology domain they operate in - the technical capability or space they're building around. E.g: AI & Machine Learning, Cybersecurity, FinTech. There can be up to 5 tech verticals per company, with 2 levels each.
[
[
"Blockchain, Crypto & Web3",
"Crypto Exchanges and Trading Infrastructure"
]
]
The status of the company.
active, acquired, closed, ipo "active"
All highlights (growth, funding, news, etc)
The type of highlight, the full list will be added shortly, these are based on growth, news, funding and other aspects of the company.
[
"headcount_surge",
"no_recent_funding",
"strong_headcount_growth",
"strong_social_growth",
"strong_web_traffic_growth",
"top_tier_investors"
]
Highlights new to this month (growth, funding, news, etc)
The type of highlight, the full list will be added shortly, these are based on growth, news, funding and other aspects of the company.
[
"headcount_surge",
"strong_headcount_growth",
"strong_social_growth",
"strong_web_traffic_growth",
"top_tier_investors"
]
A list of regions that the company operates in.
["North America"]
The year that the company was founded.
2010
The names of the founders. Deprecated, use the founder_info instead.
["Asta L.", "David Li", "Liz Fitzgerald"]
Information about the founders.
Show child attributes
Show child attributes
The number of founders, equal to the length of the founders list.
3
The number of employees the company currently has.
15841
A range for how many the employees the company has.
1-10, 11-50, 51-200, 201-500, 501-1000, 1001-5000, 5001-10000, 10001+ "10001+"
The list of investors who have invested in the company, can be none.
[
"AXA Group",
"Aaron Levie",
"Abstract Labs LLC",
"All Blue Capital",
"Allen & Company",
"Allianz X",
"Alto",
"Alven",
"Amex Ventures",
"Andreessen Horowitz"
]
The number of investors, same as the length of the list of investors.
72
The number of patents that the company owns.
292
The number of trademarks the company has.
104
If the company has been acquired, information about the acquisition is here.
Show child attributes
Show child attributes
List of IPOs if there have been any.
Show child attributes
Show child attributes
Indicates what growth stage the company is in.
bootstrapped, seed_stage, early_stage, growth_stage, late_stage, exit_stage "growth_stage"
A list of technologies that the company uses.
[
"CDN JS",
"Cloudflare JS",
"CrUX Top 50m",
"DNSSEC",
"Font Awesome",
"Google Font API",
"Google Maps",
"IPv6",
"Mobile Non Scaleable Content",
"jsDelivr"
]
The annual amount in USD ($) that the company spends on IT.
418200000
A list of awards the company has received.
Show child attributes
Show child attributes
The number of awards the company has, same as the length of the awards field.
6
A list of new items about the company. At current, this may not resemble what you see on the front end as it reflects News v1. The latest (Specter News v2) endpoints are coming soon.
Show child attributes
Show child attributes
Gain deeper insights into a company's traction and growth trends across key areas, including website traffic, social media presence, app engagement, and employee expansion.
This dataset reveals how a company's metrics have evolved over time, allowing you to track momentum and make data-driven decisions.
Each traction metric highlights the difference between the current value and past values, providing clear visibility into growth patterns over:
- 📆 1mo: 1-month growth
- 📆 2mo: 2-month growth
- 📆 3mo: 3-month growth
- 📆 4mo: 4-month growth
- 📆 5mo: 5-month growth
- 📆 6mo: 6-month growth
- 📆 12mo: 12-month growth
- 📆 24mo: 24-month growth
Show child attributes
Show child attributes
List of Specter's strategic signal IDs
Notable attributes of the founding team - e.g. prior exits, prior VC-backed experience, strong technical background.
[
"fortune_500_experience",
"major_tech_experience",
"prior_vc_backed_experience",
"prior_vc_backed_founder",
"serial_founder",
"strong_technical_background",
"top_university",
"vc_backed_founder"
]
Share of employees in each department. percentage is a fraction between 0 and 1.
Show child attributes
Show child attributes
Employee headcount by country.
Show child attributes
Show child attributes
Was this page helpful?