GET /company/tech

Company Tech

Get a company's technology stack, mobile apps, Semrush traffic data, BuiltWith technologies, Siftery products, and Bombora intent signals.

Crunchbase Data API

Retrieve the technology profile for a company — technologies used (from BuiltWith), mobile apps (from Apptopia), Siftery product adoption data, Semrush web traffic, IT spend estimates (Aberdeen), patent and trademark counts (IPQwery), and Bombora intent surge topics. Use this endpoint to understand a company’s tech choices, identify sales opportunities through intent data, or benchmark technology adoption.

HTTP Request

1
GET /company/tech

Parameters

ParameterTypeRequiredDefaultDescription
idstringYesCompany slug (e.g., nvidia, stripe, openai) or UUID
freshbooleanNofalseSkip cache and fetch fresh data (billed as non-cached request)
max_age_secondsintegerNoReturn fresh fetch if cached record is older than this many seconds
fieldsstringNoComma-separated allow-list of top-level fields to include

Response

Example Response

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
  "status": true,
  "request_id": "cb681528-9c08-250c-326f-0c0b708c",
  "data": {
    "uuid": "ee17319e-f5ee-9c9a-6500-edf82b4fbf05",
    "slug": "nvidia",
    "name": "NVIDIA",
    "image": "https://images.crunchbase.com/image/upload/v1502744943/jhowtgkdwv2aa1eodg2b.png",
    "short_description": "NVIDIA is a computing platform company operating at the intersection of graphics, HPC, and AI.",
    "semrush_visits_latest_month": 64317676,
    "semrush_visits_mom_change_pct": 0.421135110818075,
    "semrush_last_updated": "2026-04-11",
    "aberdeen_site_it_spend": {
      "value": 11221610727,
      "currency": "USD",
      "value_usd": 11221610727
    },
    "ipqwery_num_patents_granted": 5484,
    "ipqwery_num_trademarks_registered": 329,
    "ipqwery_popular_patent_category": "g06",
    "ipqwery_popular_trademark_class": "c9",
    "builtwith_num_technologies_used": 164,
    "siftery_num_products": 96,
    "apptopia_total_apps": 10,
    "apptopia_total_downloads": null,
    "bombora_surge": [
      {
        "topic": "Content Delivery Network (CDN)",
        "topic_uuid": "95e613d4-7263-4b4c-aed9-b684ac972323",
        "category": "networking",
        "surge_score": 100,
        "weeks_surging": 4
      }
      // ... more items
    ],
    "technologies": [
      {
        "uuid": "c22c40a0-dccc-42b2-9af7-355c83639e3a",
        "name": "DNSSEC",
        "categories": ["ns"],
        "num_companies_using": 778239
      },
      {
        "uuid": "70f4762f-11eb-48f1-8d0e-2ebdaca5f9e4",
        "name": "Cloudflare CDN",
        "categories": ["cdn"],
        "num_companies_using": 606143
      }
      // ... more items
    ],
    "mobile_apps": [
      {
        "uuid": "0a3a547f-1b2b-4188-a64a-f61427209741",
        "name": "Skyrim Live Wallpaper",
        "image": "https://images.crunchbase.com/image/upload/apptopia/app/9f23fe05-df93-44cf-a947-2703841dab45",
        "stores": ["google_play"],
        "monthly_downloads": null
      }
      // ... more items
    ],
    "products": [
      {
        "name": "HTML5",
        "status": "using",
        "num_customers": 439507
      },
      {
        "name": "jQuery",
        "status": "using",
        "num_customers": null
      }
      // ... more items
    ]
  },
  "_meta": {
    "is_cached": false,
    "cached_at": 1778019995.0292816,
    "cached_at_iso": "2026-05-05T22:26:35Z"
  },
  "request_params": {
    "id": "nvidia",
    "fresh": "false"
  }
}

Response Fields

FieldTypeDescription
statusbooleanWhether the request succeeded
request_idstringUnique identifier for this request
data.uuidstringCrunchbase UUID
data.slugstringCrunchbase URL slug
data.namestringCompany display name
data.imagestringCompany logo URL
data.short_descriptionstringOne-line company summary
data.semrush_visits_latest_monthintegerMonthly website visits from Semrush
data.semrush_visits_mom_change_pctnumberMonth-over-month visit change (decimal, e.g., 0.42 = 42% increase)
data.semrush_last_updatedstringDate when Semrush data was last refreshed (YYYY-MM-DD)
data.aberdeen_site_it_spendobjectIT spend estimate from Aberdeen
data.aberdeen_site_it_spend.valuenumberIT spend value
data.aberdeen_site_it_spend.currencystringCurrency code (e.g., USD)
data.aberdeen_site_it_spend.value_usdnumberIT spend in USD
data.ipqwery_num_patents_grantedintegerTotal patents granted
data.ipqwery_num_trademarks_registeredintegerTotal trademarks registered
data.ipqwery_popular_patent_categorystringMost common patent IPC category code
data.ipqwery_popular_trademark_classstringMost common trademark Nice class
data.builtwith_num_technologies_usedintegerNumber of technologies detected by BuiltWith
data.siftery_num_productsintegerNumber of products tracked by Siftery
data.apptopia_total_appsintegerTotal mobile apps
data.apptopia_total_downloadsinteger/nullTotal mobile app downloads
data.bombora_surgearrayBombora intent surge topics
data.bombora_surge[].topicstringTopic name
data.bombora_surge[].topic_uuidstringTopic UUID
data.bombora_surge[].categorystringTopic category (e.g., networking, technology)
data.bombora_surge[].surge_scoreintegerSurge intensity score (0-100)
data.bombora_surge[].weeks_surgingintegerNumber of consecutive weeks surging
data.technologiesarrayTechnologies used (from BuiltWith)
data.technologies[].uuidstringTechnology UUID
data.technologies[].namestringTechnology name
data.technologies[].categoriesarrayTechnology category tags (e.g., ns, cdn, widgets)
data.technologies[].num_companies_usingintegerHow many companies use this technology
data.mobile_appsarrayMobile app objects (from Apptopia)
data.mobile_apps[].uuidstringApp UUID
data.mobile_apps[].namestringApp name
data.mobile_apps[].imagestringApp icon URL
data.mobile_apps[].storesarrayApp store names (e.g., google_play, itunes)
data.mobile_apps[].monthly_downloadsinteger/nullMonthly download count
data.productsarraySiftery product usage data
data.products[].namestringProduct/technology name
data.products[].statusstringUsage status (e.g., using)
data.products[].num_customersinteger/nullNumber of customers using this product
_meta.is_cachedbooleanWhether response came from cache
_meta.cached_atnumberUnix timestamp of cache time
_meta.cached_at_isostringISO timestamp of cache time
request_paramsobjectEcho of request parameters

Code Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import requests

url = "https://crunchbase-extractor-full-api3.p.rapidapi.com/company/tech"

params = {
    "id": "nvidia",
    "fresh": False
}

headers = {
    "X-RapidAPI-Key": "YOUR_API_KEY",
    "X-RapidAPI-Host": "crunchbase-extractor-full-api3.p.rapidapi.com"
}

response = requests.get(url, headers=headers, params=params)
data = response.json()["data"]

print(f"{data['name']} — Tech Profile")
print(f"Monthly visits: {data['semrush_visits_latest_month']:,}")
print(f"MoM change: {data['semrush_visits_mom_change_pct']:.1%}")
print(f"IT spend: ${data['aberdeen_site_it_spend']['value_usd']:,.0f}")
print(f"Technologies: {data['builtwith_num_technologies_used']}")
print(f"Patents: {data['ipqwery_num_patents_granted']}")
print(f"Mobile apps: {data['apptopia_total_apps']}")

print("\nTop technologies:")
for tech in data["technologies"][:5]:
    print(f"  - {tech['name']} ({tech['num_companies_using']:,} companies)")

print("\nIntent signals (Bombora):")
for surge in data["bombora_surge"]:
    print(f"  - {surge['topic']} (score: {surge['surge_score']}, {surge['weeks_surging']} weeks)")
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
const url = "https://crunchbase-extractor-full-api3.p.rapidapi.com/company/tech";

const params = new URLSearchParams({
  id: "nvidia",
  fresh: "false"
});

const response = await fetch(`${url}?${params}`, {
  headers: {
    "X-RapidAPI-Key": "YOUR_API_KEY",
    "X-RapidAPI-Host": "crunchbase-extractor-full-api3.p.rapidapi.com"
  }
});

const { data } = await response.json();

console.log(`${data.name} — Tech Profile`);
console.log(`Monthly visits: ${data.semrush_visits_latest_month.toLocaleString()}`);
console.log(`MoM change: ${(data.semrush_visits_mom_change_pct * 100).toFixed(1)}%`);
console.log(`IT spend: $${data.aberdeen_site_it_spend.value_usd.toLocaleString()}`);
console.log(`Technologies: ${data.builtwith_num_technologies_used}`);
console.log(`Patents: ${data.ipqwery_num_patents_granted}`);

console.log("\nTop technologies:");
data.technologies.slice(0, 5).forEach(tech => {
  console.log(`  - ${tech.name} (${tech.num_companies_using.toLocaleString()} companies)`);
});

console.log("\nIntent signals (Bombora):");
data.bombora_surge.forEach(surge => {
  console.log(`  - ${surge.topic} (score: ${surge.surge_score}, ${surge.weeks_surging} weeks)`);
});
1
2
3
4
5
curl -G "https://crunchbase-extractor-full-api3.p.rapidapi.com/company/tech" \
  --data-urlencode "id=nvidia" \
  --data-urlencode "fresh=false" \
  -H "X-RapidAPI-Key: YOUR_API_KEY" \
  -H "X-RapidAPI-Host: crunchbase-extractor-full-api3.p.rapidapi.com"
Start building today

Get your API key and make your first request in under a minute.

Get Your API Key on RapidAPI