Skip to main content
GET
/
companies
/
techstack
Detect company website tech stack
curl --request GET \
  --url https://api.targetsmarter.com/api/v1/companies/techstack \
  --header 'Authorization: Bearer <token>'
{
  "company_id": 123,
  "domain_root": "example.com",
  "website": "https://example.com",
  "source": "cache",
  "cache_cutoff": "2025-07-27 00:00:00",
  "technologies": [
    {
      "id": 10,
      "name": "WordPress",
      "vendor": "Automattic",
      "category": "CMS",
      "last_observed_at": "2026-01-15T12:34:56Z",
      "confidence": 0.95,
      "method": "html",
      "evidence": {
        "match": "wp-content/wp-includes"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Use Authorization: Bearer <prefix>.<secret>.

Query Parameters

website
string
required

Website or domain to analyze. Normalized to a domain root (scheme optional). Example: https://example.com or example.com.

Maximum string length: 2048

Response

Detected technologies for the company website.