StartupHub.ai API
Access the world's most comprehensive startup intelligence platform programmatically. Search millions of data points across startups, investors, people, products, funding rounds, exits, news, research and patents. Enrich profiles with AI, find logos, discover and validate emails.
Use Markdown or MCP URL in the header to copy the full docs or endpoint for Claude, Cursor, ChatGPT, and Gemini.
Quick start
curl "https://www.startuphub.ai/api/v1/startups?q=anthropic" \ -H "Authorization: Bearer sk_live_..."
Authentication
All API requests require a Bearer token in the Authorization header.
Bearer sk_live_...Header format
Authorization: Bearer sk_live_a1b2c3d4e5f6...
Example with curl
curl "https://www.startuphub.ai/api/v1/startups?q=ai" \ -H "Authorization: Bearer sk_live_a1b2c3d4e5f6..."
/startupsSearch and filter the startup database by name, sector, country, tech stack, stealth status, founder-contact availability, and more. Returns paginated results with metadata. This is the API surface that powers stealth-startup deal-flow workflows for VC, M&A, and corp-dev buyers.
Query Parameters
qstringSearch query (matches name, description)
sectorstringFilter by sector (e.g. "AI", "Fintech")
countrystringFilter by HQ country
statusstringOperating status: Active, Acquired, Closed
employees_minintegerMin employee count
employees_maxintegerMax employee count
founded_afterstringFounded on or after this date (YYYY-MM-DD)
founded_beforestringFounded on or before this date (YYYY-MM-DD)
sortstringSort field.dir: founded_date.desc, total_funding.desc, total_score.desc, current_revenue.desc, employee_count.desc, employee_growth_quarterly_cagr.desc, latest_funding_date.desc, created_at.desc
stealthstringStealth-mode filter. "true" = stealth only, "false" = exclude stealth. Stealth visibility requires Pro Lite tier or higher; Free tier never sees stealth rows.
domain_tldstringComma-separated TLD list. e.g. "ai,io,so" returns only startups whose primary website sits on those TLDs. Indexed; fast.
cdnstringComma-separated detected CDNs: "cloudflare", "vercel", "cloudfront", "fastly", "netlify". Detected per startup from response headers at promote-time.
email_providerstringComma-separated detected email providers from MX records: "google_workspace", "m365", "zoho", "proton", "rackspace", "fastmail", "yandex", "mimecast", "proofpoint", "barracuda", "self_hosted", "gateway". Powers vendor-segmentation queries.
has_known_emailsstring"true" returns only startups where at least one founder/team email has been verified (mass-discovered or claimed). Pro Lite tier and higher only. Pro Lite sees redacted emails (r***@company.com); Pro sees full addresses. This is the founders-with-emails moneymaker filter.
hostingstringComma-separated detected hosting providers: aws, azure, gcp, vercel, render, railway, flyio, heroku, hetzner, ovh, vultr, linode, scaleway, digitalocean, netlify, github_pages. Detected via response headers (vendor-specific X-* tokens) + reverse-DNS on the resolved IP (catches Hetzner/OVH/Vultr/generic EC2 boxes).
paymentstringComma-separated detected payment processors: stripe, paddle, lemonsqueezy, polar, paypal, square, adyen, braintree, klarna, afterpay, affirm, bolt, mollie, razorpay, chargebee, recurly, plaid, coinbase_commerce, apple_pay, google_pay.
compliancestringComma-separated compliance certifications detected in footer text/badges: soc2, hipaa, iso27001, iso27017, pci_dss, gdpr, ccpa, fedramp. The enterprise-buyer filter — SOC 2 certification is the single biggest signal for sales-led B2B readiness.
status_pagestringStatus page vendor (operational maturity proxy): statuspage, instatus, betterstack, freshstatus, statusgator.
cookie_consentstringEU/regulated-market compliance proxy via detected cookie consent vendor: onetrust, cookiebot, cookiehub, iubenda, termly, osano. Startups running OneTrust are typically selling into enterprise.
hiring_platformstringATS / hiring vendor (proxy for stage + ATS sophistication): greenhouse, lever, ashby, workable, rippling_ats, recruitee, bamboohr.
bookingstringBooking widget (sales-led B2B signal): calendly, calcom, savvycal, chilipiper.
email_marketingstringEmail marketing / capture tool: klaviyo, mailchimp, convertkit, beehiiv, loops, hubspot_forms, customer_io, substack.
ai_supportstringCustomer-facing AI support widget (distinguishes "AI-using" from generic Intercom): intercom_fin, ada, sierra, decagon, drift_ai, fin_ai.
a11ystringAccessibility overlay widget (regulated-buyer signal): userway, accessibe, audioeye, equalweb.
affiliate_programstringAffiliate platform: partnerstack, rewardful, tolt, firstpromoter, impact, refersion, shareasale, cj_affiliate, rakuten_advertising, awin. Use affiliate_self_hosted to match startups that run their own affiliate page without a vendor.
has_affiliate_programstring"true" returns only startups with any affiliate program signal (vendor-detected OR self-hosted /affiliate page). Quick toggle for partnership-deal filtering.
limitintegerdefault: 20Results per page (1-100)
offsetintegerdefault: 0Pagination offset
Errors
Request
cURL
# The "fresh stealth founder lead" query — every stealth startup on .ai # or .io with at least one verified founder email, newest first. curl "https://www.startuphub.ai/api/v1/startups?stealth=true&domain_tld=ai,io&has_known_emails=true&sort=founded_date.desc&limit=20" \ -H "Authorization: Bearer sk_live_..."
JavaScript
// Fresh stealth founder leads — the deal-flow query.
const res = await fetch(
"https://www.startuphub.ai/api/v1/startups?stealth=true&domain_tld=ai,io&has_known_emails=true&sort=founded_date.desc&limit=20",
{
headers: {
Authorization: "Bearer sk_live_...",
},
}
);
const { data, pagination } = await res.json();
// data[].tech_fingerprint exposes detected CDN, email provider, analytics
// stack, payments, and frameworks. data[].domain_created_at is the RDAP
// registration date so you can compute domain-age-vs-founding signals.Python
import requests
# Fresh stealth founder leads — the deal-flow query.
resp = requests.get(
"https://www.startuphub.ai/api/v1/startups",
params={
"stealth": "true",
"domain_tld": "ai,io",
"has_known_emails": "true",
"sort": "founded_date.desc",
"limit": 20,
},
headers={"Authorization": "Bearer sk_live_..."},
)
data = resp.json()Response
{
"data": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Anthropic",
"slug": "anthropic",
"one_liner": "AI safety company building reliable AI systems",
"website": "https://anthropic.com",
"hq_country": "United States",
"hq_city": "San Francisco",
"founded_date": "2021-01-01",
"operating_status": "Active",
"sectors": ["AI", "Machine Learning"],
"total_score": 92.5,
"stealth_mode": null,
"domain_tld": "com",
"domain_created_at": "2021-01-06",
"has_known_emails": true,
"tech_fingerprint": {
"cdn": "cloudflare",
"email_provider": "google_workspace",
"email_provider_confidence": "high",
"analytics": ["ga4"],
"payments": [],
"frameworks": ["nextjs"],
"fingerprinted_at": "2026-05-21T09:14:00Z"
},
"logo_url": "https://cdn.startuphub.ai/..."
}
],
"pagination": {
"total": 1,
"limit": 5,
"offset": 0
},
"credits": {
"used": 1,
"remaining": 49
}
}/startups/:slugRetrieve the full profile for a startup by its URL slug. Fields returned depend on your plan tier (Free returns basic fields, Pro+ returns everything).
Query Parameters
slugstringrequiredThe startup slug (URL identifier)
Errors
Request
cURL
curl "https://www.startuphub.ai/api/v1/startups/anthropic" \ -H "Authorization: Bearer sk_live_..."
JavaScript
const res = await fetch(
"https://www.startuphub.ai/api/v1/startups/anthropic",
{
headers: {
Authorization: "Bearer sk_live_...",
},
}
);
const { data } = await res.json();Python
import requests
resp = requests.get(
"https://www.startuphub.ai/api/v1/startups/anthropic",
headers={"Authorization": "Bearer sk_live_..."},
)
data = resp.json()Response
{
"data": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Anthropic",
"slug": "anthropic",
"one_liner": "AI safety company...",
"description": "Anthropic is an AI safety...",
"website": "https://anthropic.com",
"hq_country": "United States",
"total_funding": 15000000000,
"employee_count": 1500,
"sectors": ["AI", "ML"],
"total_score": 92.5,
"logo_url": "https://cdn.startuphub.ai/..."
}
}/companies/technologyScan a company website for its technology stack. The endpoint first checks StartupHub.ai for a matching company and cached tech fingerprint, then optionally runs a fresh live scan. Perfect for CRM enrich flows where each row has a website domain.
Query Parameters
domainstringrequiredCompany domain or URL (e.g. anthropic.com or https://anthropic.com/about)
livebooleandefault: falsetrue = force a fresh live scan even when DB fingerprint exists
Errors
Request
cURL
curl "https://www.startuphub.ai/api/v1/companies/technology?domain=anthropic.com&live=true" \ -H "Authorization: Bearer sk_live_..."
JavaScript
const res = await fetch(
"https://www.startuphub.ai/api/v1/companies/technology?domain=anthropic.com&live=true",
{
headers: {
Authorization: "Bearer sk_live_...",
},
}
);
const { data } = await res.json();Python
import requests
resp = requests.get(
"https://www.startuphub.ai/api/v1/companies/technology",
params={"domain": "anthropic.com", "live": "true"},
headers={"Authorization": "Bearer sk_live_..."},
)
data = resp.json()Response
{
"data": {
"domain": "anthropic.com",
"source": "database+live",
"company": {
"id": "uuid",
"name": "Anthropic",
"slug": "anthropic",
"website": "https://anthropic.com",
"startuphub_url": "https://www.startuphub.ai/startups/anthropic",
"domain_tld": "com",
"domain_created_at": "2021-01-06"
},
"technology_stack": {
"resolved": {
"raw": {
"cdn": "cloudflare",
"hosting": "aws",
"email_provider": "google_workspace",
"frameworks": ["nextjs", "react"],
"payments": ["stripe"],
"analytics": ["ga4"],
"fingerprinted_at": "2026-05-25T15:20:00.000Z"
}
}
}
},
"credits": { "cost": 1, "remaining_period": 9999, "remaining_balance": 2000 }
}/investorsSearch VCs, angels, accelerators, and other investor types by name, country, or investor type.
Query Parameters
qstringSearch query (name, description)
countrystringFilter by country
typestringInvestor type: VC, Angel, Accelerator, CVC, PE
limitintegerdefault: 20Results per page (1-100)
offsetintegerdefault: 0Pagination offset
Request
cURL
curl "https://www.startuphub.ai/api/v1/investors?q=sequoia&type=VC" \ -H "Authorization: Bearer sk_live_..."
JavaScript
const res = await fetch(
"https://www.startuphub.ai/api/v1/investors?q=sequoia&type=VC",
{
headers: {
Authorization: "Bearer sk_live_...",
},
}
);Python
import requests
resp = requests.get(
"https://www.startuphub.ai/api/v1/investors",
params={"q": "sequoia", "type": "VC"},
headers={"Authorization": "Bearer sk_live_..."},
)Response
{
"data": [
{
"id": "uuid",
"name": "Sequoia Capital",
"investor_type": "VC",
"country": "United States",
"description": "...",
"total_score": 95.0
}
],
"pagination": {
"total": 1,
"limit": 20,
"offset": 0
}
}/peopleSearch founders, executives, board members, and key team members by name, title, country, or sector.
Query Parameters
qstringSearch query (matches name, title)
countrystringFilter by country
titlestringFilter by current title (partial match)
sectorstringFilter by sector
tagstringFilter by tag: Unit 8200, Unit 81, Serial Entrepreneur, AI Expert, Investor, Has Exits
limitintegerdefault: 20Results per page (1-100)
offsetintegerdefault: 0Pagination offset
Errors
Request
cURL
curl "https://www.startuphub.ai/api/v1/people?tag=Unit+8200&limit=10" \ -H "Authorization: Bearer sk_live_..."
JavaScript
const res = await fetch(
"https://www.startuphub.ai/api/v1/people?tag=Unit+8200&limit=10",
{
headers: {
Authorization: "Bearer sk_live_...",
},
}
);
const { data, pagination } = await res.json();Python
import requests
resp = requests.get(
"https://www.startuphub.ai/api/v1/people",
params={"tag": "Unit 8200", "limit": 10},
headers={"Authorization": "Bearer sk_live_..."},
)
data = resp.json()Response
{
"data": [
{
"id": "uuid",
"name": "Avi Shua",
"slug": "avi-shua",
"title": "CIO",
"current_title": "Chief Innovation Officer at Orca Security",
"city": "Tel Aviv",
"country": "Israel",
"sectors": ["Cybersecurity", "Cloud"],
"total_score": 85.0,
"tags": ["Unit 8200", "Serial Entrepreneur", "Has Exits"],
"avatar_url": "https://cdn.startuphub.ai/..."
}
],
"pagination": {
"total": 1,
"limit": 5,
"offset": 0
},
"credits": {
"used": 1,
"remaining": 49
}
}/logoFind square and horizontal logos for any company across our 65M+ company-profile graph. Checks our curated logo cache first, then fetches live from the company website. Best-in-class success rate.
Body Parameters
namestringCompany name (used for cache lookup)
websitestringrequiredCompany website URL (required for live fetch)
Request
cURL
curl -X POST "https://www.startuphub.ai/api/v1/logo" \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{"name": "Stripe", "website": "https://stripe.com"}'JavaScript
const res = await fetch("https://www.startuphub.ai/api/v1/logo", {
method: "POST",
headers: {
Authorization: "Bearer sk_live_...",
"Content-Type": "application/json",
},
body: JSON.stringify({
name: "Stripe",
website: "https://stripe.com",
}),
});Python
import requests
resp = requests.post(
"https://www.startuphub.ai/api/v1/logo",
json={
"name": "Stripe",
"website": "https://stripe.com",
},
headers={"Authorization": "Bearer sk_live_..."},
)Response
{
"data": {
"name": "Stripe",
"square_logo": "https://cdn.startuphub.ai/logos/stripe.png",
"horizontal_logo": "https://cdn.startuphub.ai/logos/stripe-h.png",
"has_square": true,
"has_horizontal": true,
"source": "cache"
}
}
// has_horizontal is null/false for ~60% of companies (no marketing-site
// wordmark to scrape). has_square is populated for ~95% of companies via
// favicon + og:image fallbacks. Both fields surface as either a CDN URL
// or null — clients should null-check before rendering./enrichFull AI-powered RAG enrichment. Creates a new profile if the company doesn't exist, triggers enrichment with live web data, and returns cached results if already enriched. Requires Pro Lite or higher.
Body Parameters
namestringrequiredCompany name
websitestringCompany website (improves matching)
linkedin_urlstringCompany LinkedIn profile URL
Errors
Request
cURL
curl -X POST "https://www.startuphub.ai/api/v1/enrich" \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{"name": "Anthropic", "website": "https://anthropic.com"}'JavaScript
const res = await fetch("https://www.startuphub.ai/api/v1/enrich", {
method: "POST",
headers: {
Authorization: "Bearer sk_live_...",
"Content-Type": "application/json",
},
body: JSON.stringify({
name: "Anthropic",
website: "https://anthropic.com",
}),
});Python
import requests
resp = requests.post(
"https://www.startuphub.ai/api/v1/enrich",
json={
"name": "Anthropic",
"website": "https://anthropic.com",
},
headers={"Authorization": "Bearer sk_live_..."},
)Response
{
"data": {
"id": "uuid",
"name": "Anthropic",
"slug": "anthropic",
"description": "Anthropic is an AI safety...",
"website": "https://anthropic.com",
"total_funding": 15000000000,
"employee_count": 1500
},
"source": "cache",
"enriched": true
}/email/discoverFind a professional email address given a person's name and company domain.
Body Parameters
firstNamestringrequiredPerson's first name
lastNamestringrequiredPerson's last name
domainstringrequiredCompany email domain (e.g. anthropic.com)
Request
cURL
curl -X POST "https://www.startuphub.ai/api/v1/email/discover" \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{"firstName":"Dario","lastName":"Amodei","domain":"anthropic.com"}'JavaScript
const res = await fetch("https://www.startuphub.ai/api/v1/email/discover", {
method: "POST",
headers: {
Authorization: "Bearer sk_live_...",
"Content-Type": "application/json",
},
body: JSON.stringify({
firstName: "Dario",
lastName: "Amodei",
domain: "anthropic.com",
}),
});Python
import requests
resp = requests.post(
"https://www.startuphub.ai/api/v1/email/discover",
json={
"firstName": "Dario",
"lastName": "Amodei",
"domain": "anthropic.com",
},
headers={"Authorization": "Bearer sk_live_..."},
)Response
{
"found": true,
"email": "[email protected]",
"domain": "anthropic.com",
"totalCombinationsTested": 12
}/email/validateVerify if an email address is valid and deliverable.
Body Parameters
emailstringrequiredEmail address to validate
Request
cURL
curl -X POST "https://www.startuphub.ai/api/v1/email/validate" \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{"email": "[email protected]"}'JavaScript
const res = await fetch("https://www.startuphub.ai/api/v1/email/validate", {
method: "POST",
headers: {
Authorization: "Bearer sk_live_...",
"Content-Type": "application/json",
},
body: JSON.stringify({
email: "[email protected]",
}),
});Python
import requests
resp = requests.post(
"https://www.startuphub.ai/api/v1/email/validate",
json={"email": "[email protected]"},
headers={"Authorization": "Bearer sk_live_..."},
)Response
{
"email": "[email protected]",
"valid": true,
"reason": "Verified",
"details": null
}/startups/submitAgent-friendly endpoint that lets an AI agent (or any API client) submit a new startup for inclusion on StartupHub.ai. Submissions enter a moderation queue and become public after admin approval (typically within 24h). Strict format: third-person prose, no HTML/markdown, no listicle titles. On bad input returns 400 with field-level errors and copy-paste suggestions so the agent can self-correct without human help. Optional logo_url is fetched and stored automatically (≤2MB).
Body Parameters
namestringrequiredOfficial company name (≤80 chars; no listicle words like "best/top/2026")
websitestringrequiredCompany website URL
one_linerstringrequiredOne-sentence pitch in third person, 20–200 chars
descriptionstringrequiredFull description in third person, 30–400 words, plain text only
sectorsarrayrequired1–5 sectors from the controlled vocabulary
founded_datestringYYYY, YYYY-MM, or YYYY-MM-DD
hq_countrystringCountry
hq_citystringCity
linkedin_urlstringCompany LinkedIn URL
twitter_urlstringCompany Twitter/X URL
github_urlstringCompany GitHub URL
logo_urlstringOptional logo image URL — server fetches and stores (≤2MB, PNG/JPEG/WebP/SVG/GIF)
stagestringPre-seed | Seed | Series A/B/C/D | Series E+ | Growth | Late Stage | Pre-IPO | Public | Acquired | Bootstrapped
business_modelstringB2B SaaS | B2C SaaS | Marketplace | API/Developer Tools | Hardware | ...
employee_countnumbertotal_fundingnumberUSD
latest_funding_roundstringe.g. "Series B"
latest_funding_datestringYYYY or YYYY-MM-DD
latest_valuationnumberUSD
stock_exchangestringNASDAQ | NYSE | ... — for public companies
tickerstringlinkedin_followersnumbergithub_starsnumberformer_namesarrayPrevious company names
facebook_urlstringyoutube_urlstringblog_urlstringsubstack_urlstringdiscord_urlstringslack_urlstringcommunity_urlstringstatus_urlstringchangelog_urlstringroadmap_urlstringapi_docs_urlstringsecurity_page_urlstringdemo_urlstringdemo_video_urlstringcoding_languagesarraye.g. ["Python", "TypeScript", "Rust"]
frameworks_toolsarraycloud_providersarraye.g. ["AWS", "GCP"]
certificationsarraySOC 2 | SOC 2 Type II | ISO 27001 | HIPAA | GDPR | PCI DSS | FedRAMP | ...
is_raisingbooleanraising_roundstringraising_targetnumberUSD
raising_use_of_fundsstringpitch_deck_urlstringis_hiringbooleancareers_urlstringcontact_emailstringpartnerships_emailstringpress_emailstringfoundersarrayArray of { name, role, linkedin_url, email } — matched to existing people by slug / name / LinkedIn; unmatched stashed in admin review queue
team_membersarraySame shape as founders
notable_investorsarrayArray of { name, slug, website } — matched to existing investors
competitorsarrayArray of { name, slug, website } — matched to existing startups
mentioned_articlesarrayArray of { slug } or { url } — links to StartupHub.ai posts; bidirectional
productsarrayArray of { name, description, url } — stashed in meta_fields for admin promotion
Errors
Request
cURL
curl -X POST "https://www.startuphub.ai/api/v1/startups/submit" \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{
"name": "Anthropic",
"website": "https://anthropic.com",
"one_liner": "Anthropic builds reliable, interpretable, and steerable AI systems for the safety-conscious enterprise.",
"description": "Anthropic is an AI safety company building large-scale language models with a focus on reliability and interpretability. Founded in 2021 by former OpenAI executives, the company researches techniques for making AI systems more honest, harmless, and helpful. Anthropic offers Claude, an enterprise-grade chat assistant, alongside research APIs.",
"sectors": ["Artificial Intelligence", "AI Research"],
"founded_date": "2021",
"hq_country": "United States",
"hq_city": "San Francisco",
"logo_url": "https://anthropic.com/logo.png"
}'JavaScript
const res = await fetch("https://www.startuphub.ai/api/v1/startups/submit", {
method: "POST",
headers: {
Authorization: "Bearer sk_live_...",
"Content-Type": "application/json",
},
body: JSON.stringify({
name: "Anthropic",
website: "https://anthropic.com",
one_liner: "Anthropic builds reliable, interpretable, and steerable AI systems...",
description: "Anthropic is an AI safety company...",
sectors: ["Artificial Intelligence", "AI Research"],
founded_date: "2021",
hq_country: "United States",
logo_url: "https://anthropic.com/logo.png",
}),
});
const data = await res.json();
if (!res.ok && data.error === "validation_failed") {
// Each error has { field, message, suggestion } — fix and retry
for (const err of data.errors) {
console.warn(`${err.field}: ${err.message} — ${err.suggestion}`);
}
}Python
import requests
resp = requests.post(
"https://www.startuphub.ai/api/v1/startups/submit",
json={
"name": "Anthropic",
"website": "https://anthropic.com",
"one_liner": "Anthropic builds reliable, interpretable, and steerable AI systems...",
"description": "Anthropic is an AI safety company...",
"sectors": ["Artificial Intelligence", "AI Research"],
"founded_date": "2021",
"hq_country": "United States",
"logo_url": "https://anthropic.com/logo.png",
},
headers={"Authorization": "Bearer sk_live_..."},
)
data = resp.json()
if resp.status_code == 400 and data.get("error") == "validation_failed":
for err in data["errors"]:
print(f"{err['field']}: {err['message']} -- {err.get('suggestion', '')}")Response
{
"success": true,
"status": "pending_review",
"message": "Submission received. An admin will review within 24 hours. The profile is not publicly visible until approved.",
"startup": {
"id": "uuid",
"slug": "anthropic",
"name": "Anthropic",
"url": "https://www.startuphub.ai/startups/anthropic",
"moderation_status": "flagged_pending",
"logo_url": "https://bsmromhjxdnndenlrpgx.supabase.co/storage/v1/object/public/entity-images/startups/uuid.png"
},
"credits": { "used": 5, "limit": 100, "remaining": 95 }
}/investors/submitSubmit a new investor profile (VC, angel, accelerator, etc.) for moderation review. Same flow as Submit a Startup. Deduped by website domain or name+country.
Body Parameters
namestringrequiredOfficial firm name (≤100 chars)
typestringrequiredVC | Angel | Accelerator | Incubator | Corporate VC | Family Office | Sovereign Wealth Fund | Crowdfunding | PE | Hedge Fund | Syndicate
descriptionstringrequiredThird-person, 20–400 words
websitestringFirm website
countrystringcitystringsector_focusarrayUp to 10 sectors invested in
stage_focusarrayPre-seed | Seed | Series A | Series B | Series C | Series D | Growth | Late Stage
logo_urlstringOptional logo URL (≤2MB)
Request
cURL
curl -X POST "https://www.startuphub.ai/api/v1/investors/submit" \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{
"name": "Sequoia Capital",
"type": "VC",
"description": "Sequoia Capital is a venture capital firm founded in 1972 with a focus on technology and consumer companies. The firm invests across stages from seed to growth and has backed companies including Apple, Google, and Nvidia.",
"website": "https://sequoiacap.com",
"country": "United States",
"city": "Menlo Park",
"stage_focus": ["Seed", "Series A", "Series B", "Growth"]
}'JavaScript
const res = await fetch("https://www.startuphub.ai/api/v1/investors/submit", {
method: "POST",
headers: { Authorization: "Bearer sk_live_...", "Content-Type": "application/json" },
body: JSON.stringify({
name: "Sequoia Capital",
type: "VC",
description: "Sequoia Capital is a venture capital firm...",
website: "https://sequoiacap.com",
stage_focus: ["Seed", "Series A", "Growth"],
}),
});Python
import requests
resp = requests.post(
"https://www.startuphub.ai/api/v1/investors/submit",
json={
"name": "Sequoia Capital",
"type": "VC",
"description": "Sequoia Capital is a venture capital firm...",
"website": "https://sequoiacap.com",
"stage_focus": ["Seed", "Series A", "Growth"],
},
headers={"Authorization": "Bearer sk_live_..."},
)Response
{
"success": true,
"status": "pending_review",
"investor": { "id": "uuid", "slug": "sequoia-capital", "name": "Sequoia Capital",
"url": "https://www.startuphub.ai/investors/sequoia-capital",
"moderation_status": "flagged_pending" },
"credits": { "used": 5, "limit": 100, "remaining": 95 }
}/people/submitSubmit a new person profile (founder, executive, board member). Requires either current_title or linkedin_url to disambiguate from common-name dupes. Third-person bio, plain text, ≤300 words.
Body Parameters
namestringrequiredPerson's full name (≤80 chars)
current_titlestringe.g. "CEO at OpenAI" — required if no linkedin_url
linkedin_urlstringPersonal LinkedIn (linkedin.com/in/...) — required if no current_title
descriptionstringThird-person bio, ≤300 words
citystringcountrystringtwitter_urlstringgithub_urlstringavatar_urlstringOptional avatar image URL (≤2MB)
Request
cURL
curl -X POST "https://www.startuphub.ai/api/v1/people/submit" \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{
"name": "Dario Amodei",
"current_title": "CEO and Co-founder at Anthropic",
"linkedin_url": "https://linkedin.com/in/darioamodei",
"description": "Dario Amodei is the CEO and co-founder of Anthropic. He previously served as VP of Research at OpenAI.",
"country": "United States"
}'JavaScript
const res = await fetch("https://www.startuphub.ai/api/v1/people/submit", {
method: "POST",
headers: { Authorization: "Bearer sk_live_...", "Content-Type": "application/json" },
body: JSON.stringify({
name: "Dario Amodei",
current_title: "CEO and Co-founder at Anthropic",
linkedin_url: "https://linkedin.com/in/darioamodei",
}),
});Python
import requests
resp = requests.post(
"https://www.startuphub.ai/api/v1/people/submit",
json={"name": "Dario Amodei", "current_title": "CEO and Co-founder at Anthropic",
"linkedin_url": "https://linkedin.com/in/darioamodei"},
headers={"Authorization": "Bearer sk_live_..."},
)Response
{
"success": true,
"status": "pending_review",
"person": { "id": "uuid", "slug": "dario-amodei", "name": "Dario Amodei",
"url": "https://www.startuphub.ai/people/dario-amodei",
"moderation_status": "flagged_pending" },
"credits": { "used": 5, "limit": 100, "remaining": 95 }
}/agent-readinessScans any website and scores how well it is optimised for AI agents — robots.txt, sitemap, llms.txt, llms-full.txt, markdown content-negotiation, MCP server card, and more. Returns a score out of 100, a letter grade, and per-check pass/warn/fail results with improvement suggestions. Using Clay? See /integrations/clay for the copy-paste HTTP API column setup.
Body Parameters
urlstringrequiredFull URL of the website to scan (e.g. https://anthropic.com)
Request
cURL
curl -X POST "https://www.startuphub.ai/api/v1/agent-readiness" \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{ "url": "https://anthropic.com" }'JavaScript
const res = await fetch("https://www.startuphub.ai/api/v1/agent-readiness", {
method: "POST",
headers: {
Authorization: "Bearer sk_live_...",
"Content-Type": "application/json",
},
body: JSON.stringify({ url: "https://anthropic.com" }),
});
const { data } = await res.json();
console.log(data.totalScore, data.grade);Python
import requests
resp = requests.post(
"https://www.startuphub.ai/api/v1/agent-readiness",
headers={"Authorization": "Bearer sk_live_..."},
json={"url": "https://anthropic.com"},
)
data = resp.json()["data"]
print(data["totalScore"], data["grade"])Response
{
"data": {
"url": "https://anthropic.com",
"totalScore": 82,
"grade": "A",
"categories": [
{ "category": "crawlability", "label": "Crawlability", "score": 100, "passed": 3, "total": 3 },
{ "category": "content", "label": "Content", "score": 75, "passed": 3, "total": 4 },
{ "category": "agent_protocols", "label": "Agent Protocols", "score": 60, "passed": 2, "total": 3 }
],
"checks": [
{
"id": "robots-txt",
"label": "robots.txt present",
"status": "pass",
"category": "crawlability",
"weight": 3,
"detail": "robots.txt found and accessible."
},
{
"id": "llms-txt",
"label": "llms.txt present",
"status": "fail",
"category": "agent_protocols",
"weight": 3,
"detail": "No llms.txt found. Add one at /llms.txt to help agents discover your site structure.",
"fix_prompt": "Create /llms.txt at your site root listing your most important URLs (one per line, plain text). Example:\nhttps://example.com/about\nhttps://example.com/products\nhttps://example.com/api-docs\nThis is the primary discovery file for AI agents."
}
],
"markdown": "## Agent Readiness Report\n**Score:** 82/100 (A)\n...",
"scannedAt": "2026-04-23T12:00:00.000Z",
"totalMs": 1840
},
"credits": { "used": 1, "limit": 50, "remaining": 49 }
}/lists/ai-generatePrompt → curated list of matching startups. Pass a natural-language brief ("stealth AI agent startups in Israel founded after 2024") and the engine runs a Google-grounded search, parses the results, finds or creates the matching startup rows, and returns up to 50 IDs you can hand to /lists/submit to publish. Pair with /v1/lists/submit for a complete prompt-to-public-list workflow. Each call: 5 credits.
Body Parameters
promptstringNatural-language brief — required unless pasted_list is provided
pasted_liststringRaw text (YC batch page, a16z portfolio, CSV, article). Names + context extracted automatically.
typestringdefault: startupEntity type — only "startup" supported today
limitintegerdefault: 20Max suggestions to return (1-50)
Errors
Request
cURL
curl -X POST "https://www.startuphub.ai/api/v1/lists/ai-generate" \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{
"prompt": "stealth AI agent startups in Israel founded after 2024",
"limit": 15
}'JavaScript
const res = await fetch("https://www.startuphub.ai/api/v1/lists/ai-generate", {
method: "POST",
headers: {
Authorization: "Bearer sk_live_...",
"Content-Type": "application/json",
},
body: JSON.stringify({
prompt: "stealth AI agent startups in Israel founded after 2024",
limit: 15,
}),
});
const { data } = await res.json();
console.log(`Found ${data.matched} startups (${data.created} brand new)`);Python
import requests
resp = requests.post(
"https://www.startuphub.ai/api/v1/lists/ai-generate",
json={
"prompt": "stealth AI agent startups in Israel founded after 2024",
"limit": 15,
},
headers={"Authorization": "Bearer sk_live_..."},
)
data = resp.json()["data"]
print(f"Found {data['matched']} startups ({data['created']} brand new)")Response
{
"data": {
"found": [
{
"id": "uuid",
"name": "Anoma Labs",
"slug": "anoma-labs",
"logoUrl": "https://www.google.com/s2/favicons?domain=anomalabs.com&sz=128"
}
],
"total_suggestions": 18,
"matched": 15,
"created": 3
},
"credits": { "used": 5, "limit": 15, "remaining": 10 }
}
// Pipe data.found[].id into POST /lists/submit to publish the
// curated list as a public page on StartupHub.ai./trends/currentPublic, no-auth endpoint returning the current state of the AI startup ecosystem: rolling 7-day capital deployed vs prior week, biggest rounds, hottest sectors / countries / stages, recent exits, emerging themes, most active investors. Designed for the get_trends MCP tool so Claude / ChatGPT / Gemini can ground investment-thesis answers in fresh aggregated data. Cached at the CDN for 5 minutes; rate-limited per IP to 10/day for unauthenticated callers.
Query Parameters
windowstringdefault: 7dAggregation window: "7d" (default) or "30d"
Errors
Request
cURL
curl "https://www.startuphub.ai/api/v1/trends/current"
JavaScript
const res = await fetch("https://www.startuphub.ai/api/v1/trends/current");
const { data } = await res.json();
console.log(data.capital_deployed_7d, data.top_sectors);Python
import requests
resp = requests.get("https://www.startuphub.ai/api/v1/trends/current")
data = resp.json()["data"]
print(data["capital_deployed_7d"], data["top_sectors"])Response
{
"data": {
"window": "7d",
"as_of": "2026-05-20T18:00:00Z",
"capital_deployed_7d": 6240000000,
"capital_deployed_prev_7d": 4180000000,
"wow_delta_pct": 49.3,
"round_count_7d": 87,
"biggest_rounds": [
{ "startup": "Ricursive Intelligence", "amount": 650000000, "series": "Series B", "lead_investor": "..." }
],
"top_sectors": [
{ "sector": "AI Infrastructure", "capital": 2100000000, "rounds": 14 },
{ "sector": "Agents", "capital": 980000000, "rounds": 22 }
],
"top_countries": [
{ "country": "United States", "capital": 4200000000, "rounds": 51 }
],
"top_stages": [
{ "series": "Series A", "rounds": 28, "median_amount": 18000000 }
],
"active_investors": [
{ "name": "Founderful", "rounds_led": 3, "rounds_participated": 5 }
],
"exits": [
{ "startup": "...", "type": "Acquisition", "amount": 450000000, "acquirer": "..." }
]
}
}/advertiser/analyticsLive performance for ads owned by your account: impressions, clicks, CTR, daily trend, by-placement and by-variant breakdown. Same JSON shape your /my-account?tab=ads dashboard renders. Free for own data — no credit cost.
Query Parameters
ad_idintegerFilter to a single ad (must be owned by you). Omit for all of your ads.
daysintegerLookback window in days (default 30, max 365).
Request
cURL
curl -H "Authorization: Bearer sk_live_..." \ "https://www.startuphub.ai/api/v1/advertiser/analytics?days=30"
JavaScript
const res = await fetch("https://www.startuphub.ai/api/v1/advertiser/analytics?days=30", {
headers: { Authorization: "Bearer sk_live_..." },
});
const { ads, totals } = await res.json();
console.log(totals.impressions, totals.clicks, totals.ctr);Python
import requests
resp = requests.get(
"https://www.startuphub.ai/api/v1/advertiser/analytics",
headers={"Authorization": "Bearer sk_live_..."},
params={"days": 30},
)
data = resp.json()
print(data["totals"])Response
{
"ads": [
{
"ad": { "id": 1234, "title": "Airwallex for global startups", "status": "active", "is_published": true },
"impressions": 48210,
"clicks": 312,
"ctr": 0.6,
"surface_breakdown": {
"article": { "impressions": 28100, "clicks": 178 },
"profile_page": { "impressions": 14210, "clicks": 95 },
"search": { "impressions": 5900, "clicks": 39 }
},
"variant_breakdown": {
"v1-uuid": { "impressions": 24000, "clicks": 165, "ctr": 0.7 },
"v2-uuid": { "impressions": 24210, "clicks": 147, "ctr": 0.6 }
},
"series": [
{ "day": "2026-04-01", "impressions": 1620, "clicks": 11 },
{ "day": "2026-04-02", "impressions": 1750, "clicks": 9 }
]
}
],
"totals": { "impressions": 48210, "clicks": 312, "ctr": 0.6 },
"window_days": 30
}/monitorCreate a watch on any company by URL and get alerts when it changes — funding, jobs, tech stack, headcount, news, status, pricing, new domains. Pass a webhook_url for near-real-time delivery: the moment a change is detected we POST a structured event to your endpoint. GET /monitor lists your watches (free); DELETE /monitor?id=… cancels one (free). Plan tier governs how many companies you can watch, the cadence, and which signals.
Body Parameters
urlstringrequiredCompany website or domain to watch (e.g. acme.com). Works on stealth startups not yet in the directory.
signalsstring[]funding, jobs, tech, headcount, news, status, pricing, domains. Defaults to everything your plan allows.
frequencystringCadence: weekly | daily | 12h | 4h. Clamped to your plan max (faster = higher tier).
webhook_urlstringHTTPS endpoint. We POST {event, entity_id, title, body, metadata, delivered_at} the moment a change is detected.
delivery_channelsstring[]email | slack | teams. Defaults to email. webhook_url is independent and always fires when set.
Errors
Request
cURL
curl -X POST "https://www.startuphub.ai/api/v1/monitor" \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{"url":"cursor.com","signals":["funding","jobs","pricing"],"webhook_url":"https://yourapp.com/hooks/monitor"}'JavaScript
const res = await fetch("https://www.startuphub.ai/api/v1/monitor", {
method: "POST",
headers: { Authorization: "Bearer sk_live_...", "Content-Type": "application/json" },
body: JSON.stringify({
url: "cursor.com",
signals: ["funding", "jobs", "pricing"],
webhook_url: "https://yourapp.com/hooks/monitor",
}),
});
const { data } = await res.json();Python
import requests
resp = requests.post(
"https://www.startuphub.ai/api/v1/monitor",
headers={"Authorization": "Bearer sk_live_..."},
json={
"url": "cursor.com",
"signals": ["funding", "jobs", "pricing"],
"webhook_url": "https://yourapp.com/hooks/monitor",
},
)
print(resp.json()["data"])Response
{
"data": {
"id": "a1b2c3d4-...",
"domain": "cursor.com",
"entity_name": "Cursor",
"frequency": "daily",
"signals": ["funding", "jobs", "pricing"],
"delivery_channels": ["email"],
"webhook_url": "https://yourapp.com/hooks/monitor",
"next_poll_at": "2026-05-25T20:30:00Z"
},
"credits": { "cost": 5, "remaining_period": 49995, "remaining_balance": 0 }
}
// Webhook payload — POSTed to webhook_url the moment a change is detected:
{
"event": "funding",
"entity_id": "...",
"title": "Cursor raised a Series C",
"body": "Led by ... · $...",
"metadata": { "signal": "funding" },
"delivered_at": "2026-05-25T21:14:00Z"
}/intel/previewFree teaser for the deep intelligence lookup. Resolves any identifier (name, company, domain, LinkedIn, or email) to a person or company and returns the identity plus a manifest of which intelligence sections are available (regulatory filings, ownership and control, fund assets under management, compensation benchmarks, affiliated entities, verified contacts) without revealing the underlying values. Unlock the full dossier via /intel/lookup. Rate-limited per IP to 10/day for unauthenticated callers.
Query Parameters
qstringrequiredAny identifier: a name, company, domain, LinkedIn URL, or email
Errors
Request
cURL
curl "https://www.startuphub.ai/api/v1/intel/preview?q=anthropic.com"
JavaScript
const res = await fetch("https://www.startuphub.ai/api/v1/intel/preview?q=anthropic.com");
const dossier = await res.json();Python
import requests
resp = requests.get("https://www.startuphub.ai/api/v1/intel/preview", params={"q": "anthropic.com"})Response
{
"resolved": { "matched": true, "company": { "name": "Anthropic" } },
"sections": [
{ "key": "filings", "tier": "locked", "status": "ok", "preview": "1,537 regulatory filings on record" },
{ "key": "compensation", "tier": "locked", "status": "ok", "preview": "Median compensation ~$188k" }
],
"unlock": { "cost_credits": 10, "endpoint": "/api/v1/intel/lookup" }
}/intel/lookupFull intelligence dossier on any person or company, every section unredacted: regulatory and corporate filings, financial ownership and control structure, fund assets under management and control persons, compensation benchmarks (median and percentile ranges by role), affiliated entities, and verified contacts. People are automatically linked to the companies and funds they are connected to, and those are profiled too. Compiled from authoritative public records.
Query Parameters
qstringrequiredAny identifier: a name, company, domain, LinkedIn URL, or email
Errors
Request
cURL
curl "https://www.startuphub.ai/api/v1/intel/lookup?q=Sequoia%20Capital%20Operations" \ -H "Authorization: Bearer sk_live_..."
JavaScript
const res = await fetch(
"https://www.startuphub.ai/api/v1/intel/lookup?q=Sequoia%20Capital%20Operations",
{ headers: { Authorization: "Bearer sk_live_..." } }
);
const dossier = await res.json();Python
import requests
resp = requests.get(
"https://www.startuphub.ai/api/v1/intel/lookup",
params={"q": "Sequoia Capital Operations"},
headers={"Authorization": "Bearer sk_live_..."},
)Response
{
"resolved": { "matched": true, "company": { "name": "Sequoia Capital Operations" } },
"sections": [
{ "key": "fund_adv", "status": "ok", "data": { "private_fund_assets": "...", "control_related": "Y" } },
{ "key": "compensation", "status": "ok", "data": { "median_annual_wage": 188000 } }
]
}Rate Limits
Daily credit limits reset at midnight UTC. Your current usage is visible in real-time at My Account → API.
| Endpoint | Credits | Free | Pro Mini | Pro Lite | Pro | Pro+ |
|---|---|---|---|---|---|---|
| Email Validate | 1 | 50/day | 200/day | 500/day | 2,000/day | 10,000/day |
| Email Discover | 3 | 5/day | 20/day | 50/day | 200/day | 1,000/day |
| Search / DB | 1 | 50/day | 200/day | 500/day | 2,000/day | 10,000/day |
| Profile | 1 | 25/day | 100/day | 250/day | 1,000/day | 5,000/day |
| Logo | 1 | 10/day | 40/day | 100/day | 500/day | 2,500/day |
| Enrich | 5 | -- | 5/day | 25/day | 100/day | 500/day |
Hit your daily limit? Top up credits one-off or upgrade your plan for a higher daily ceiling.
Pay with x402 (no account)
Autonomous agents (Claude Code, Codex, and others) can pay per request with USDC on the Base network via the x402 protocol — no signup, no API key. Supported endpoints return HTTP 402 with payment instructions; your client pays and retries. This is the x402 mesh: keyless, pay-per-call access.
Step 1 — get a Base USDC wallet (one time)
Generate a key, fund it with a few dollars of USDC on Base (covers thousands of calls):
npm i viem x402-fetch
import { generatePrivateKey, privateKeyToAccount } from "viem/accounts";
const pk = generatePrivateKey(); // store securely
const account = privateKeyToAccount(pk);
console.log("Fund with USDC on Base:", account.address);Or use Coinbase Wallet / MetaMask on the Base network. Buy or bridge USDC via bridge.base.org. Base USDC: 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913.
Step 2 — call any priced endpoint
x402-fetch handles the 402 → pay → retry handshake automatically:
import { wrapFetchWithPayment } from "x402-fetch";
import { privateKeyToAccount } from "viem/accounts";
const account = privateKeyToAccount(process.env.WALLET_PRIVATE_KEY);
const fetchWithPay = wrapFetchWithPayment(fetch, account);
// No API key needed — payment is automatic on the 402.
const res = await fetchWithPay(
"https://www.startuphub.ai/api/v1/intel/lookup?q=Sequoia%20Capital%20Operations"
);
const dossier = await res.json();The 402 response
{
"version": "2",
"accepts": [{
"scheme": "exact",
"network": "base",
"asset": "USDC",
"amount": "10000", // micro-units; 10000 = $0.01
"payTo": "0x...", // StartupHub.ai receiving wallet
"resource": "<the URL you called>",
"maxTimeoutSeconds": 60
}]
}USDC has 6 decimals (1 USDC = 1,000,000 micro-units). Sign an EIP-3009 transferWithAuthorization and retry with header X-Payment. Payments settle in USDC on Base only. Bearer-key callers are unaffected; x402 is the keyless fallback. A 401 instead of 402 means x402 is not enabled for that endpoint yet.
Errors
The API uses standard HTTP status codes. All error responses include an error field with a human-readable message.
400Bad Request
Missing or invalid parameters
401Unauthorized
Invalid or missing API key
403Forbidden
Feature requires a higher plan tier
404Not Found
Resource does not exist
429Rate Limited
Daily credit limit exceeded
500Server Error
Internal error (retry after a moment)
Error response format
{
"error": "Rate limit exceeded",
"message": "You've reached your daily limit of 50 search requests. Upgrade to Pro Lite for higher limits.",
"upgrade_url": "https://www.startuphub.ai/pricing"
}MCP Server
Connect StartupHub.ai data directly to Claude Desktop, Cursor, Windsurf, or any MCP-compatible AI tool. All API endpoints are available as MCP tools.
Search startups and investors from your AI chat
Enrich companies with live web data
Discover and validate emails inline
Find company logos for presentations
Endpoint URL
claude_desktop_config.json / .cursor/mcp.json
{
"mcpServers": {
"startuphub": {
"url": "https://www.startuphub.ai/api/mcp",
"headers": {
"Authorization": "Bearer sk_live_..."
}
}
}
}The `Authorization` header is optional — without it you get the free tools (email validate, email discover, agent readiness, logo, trends). Add a key to unlock startup search, submit, edit, and profile tools.
Use it in your favourite AI client
StartupHub speaks Model Context Protocol over HTTP — paste one URL into any of these and your assistant gains 30+ tools for searching, enriching, finding emails, validating emails, scanning AI-readiness, and submitting startup data. See the full tool catalog →
Claude Desktop
The reference MCP client. Free + Pro.
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"startuphub": {
"url": "https://www.startuphub.ai/api/mcp",
"headers": { "Authorization": "Bearer sk_live_..." }
}
}
}Claude Code
Anthropic's terminal coding agent.
one command
claude mcp add startuphub --transport http https://www.startuphub.ai/api/mcp \
--header "Authorization: Bearer sk_live_..."OpenAI Codex CLI
OpenAI's open-source coding agent. STDIO + HTTP MCP.
~/.codex/config.toml
[mcp_servers.startuphub]
url = "https://www.startuphub.ai/api/mcp"
[mcp_servers.startuphub.http_headers]
Authorization = "Bearer sk_live_..."Cursor
AI-native code editor.
.cursor/mcp.json (project) or ~/.cursor/mcp.json (global)
{
"mcpServers": {
"startuphub": {
"url": "https://www.startuphub.ai/api/mcp",
"headers": { "Authorization": "Bearer sk_live_..." }
}
}
}Windsurf
Codeium's AI IDE.
Settings → MCP servers → Add
{
"mcpServers": {
"startuphub": {
"serverUrl": "https://www.startuphub.ai/api/mcp",
"headers": { "Authorization": "Bearer sk_live_..." }
}
}
}Zed
High-performance collaborative editor.
Settings → context_servers
{
"context_servers": {
"startuphub": {
"command": null,
"url": "https://www.startuphub.ai/api/mcp",
"headers": { "Authorization": "Bearer sk_live_..." }
}
}
}Continue.dev
Open-source AI extension for VS Code & JetBrains.
~/.continue/config.json
{
"mcpServers": [
{
"name": "startuphub",
"url": "https://www.startuphub.ai/api/mcp",
"headers": { "Authorization": "Bearer sk_live_..." }
}
]
}Cline (VS Code)
AI coding assistant inside VS Code.
Cline settings → MCP servers
{
"startuphub": {
"url": "https://www.startuphub.ai/api/mcp",
"headers": { "Authorization": "Bearer sk_live_..." }
}
}Goose (Block)
Open-source AI agent from Block.
~/.config/goose/config.yaml
extensions:
startuphub:
type: streamable_http
uri: https://www.startuphub.ai/api/mcp
headers:
Authorization: "Bearer sk_live_..."ChatGPT Desktop
Plus / Team / Enterprise. Web ChatGPT does not support MCP.
Settings → Beta features → Connectors
URL: https://www.startuphub.ai/api/mcp
Header: Authorization: Bearer sk_live_...Gemini CLI
Google's terminal Gemini agent.
~/.gemini/settings.json
{
"mcpServers": {
"startuphub": {
"httpUrl": "https://www.startuphub.ai/api/mcp",
"headers": { "Authorization": "Bearer sk_live_..." }
}
}
}JetBrains AI Assistant
IntelliJ / WebStorm / PyCharm.
Settings → Tools → AI Assistant → MCP
Add server →
URL: https://www.startuphub.ai/api/mcp
Header: Authorization: Bearer sk_live_...Building your own agent?
The endpoint speaks streamable-HTTP MCP, so it works with the official OpenAI Agents SDK (MCPServerStreamableHttp), LangChain's MultiServerMCPClient, LlamaIndex, LibreChat, and the broader MCP ecosystem. Without a Bearer header you get five free tools rate-limited per IP; with a key you get all 30+ tools and your plan’s quota.Use it inside no-code platforms
Drop the email finder, validator, and AI-readiness scanner into Zapier, Make, n8n, or Clay. Three core endpoints (/email/discover, /email/validate, /agent-readiness/scan) work in any HTTP-capable workflow tool. Native nodes ship for n8n today; Zapier and Make natives are in review.
n8n
Open-source workflow automation. Install n8n-nodes-startuphub from the Community Nodes panel.
Clay
Drop a domain into a Clay table → get back the AI-readiness score and per-category breakdown.
Zapier
Use Webhooks-by-Zapier today. Native Zapier app is in their review queue.
Make (Integromat)
Use the HTTP "Make a request" module today. Native Make app coming after Zapier ships.
Ready to get started?
Create a free API key and start building in minutes. No credit card required.