POST
/
v1
/
companies
/
technographics
Company Technographics 🆕
curl --request POST \
  --url https://api.leadmagic.io/v1/companies/technographics \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "company_domain": "gong.io"
}'
{
  "credits_consumed": 1,
  "message": "Technology stack information retrieved successfully",
  "data": [
    {
      "name": "Google Analytics",
      "description": "Google Analytics is a web analytics service offered by Google that tracks and reports website traffic.",
      "categories": [
        "Analytics",
        "Marketing"
      ],
      "sub_technologies": [
        {
          "name": "Google Analytics 4",
          "description": "The latest version of Google Analytics with enhanced privacy features",
          "categories": [
            "Analytics",
            "Privacy-focused"
          ]
        }
      ]
    }
  ]
}
Get detailed information about the technology stack used by a company, including web technologies, frameworks, analytics tools, and more.

Request

company_domain
string
required
The domain of the company to analyze (e.g., “example.com”)
Credits: This endpoint consumes 1 credit when technologies are found, and 0 credits when no data is available.

Response

credits_consumed
number
required
Number of credits consumed by this request (0 or 1)
message
string
required
Status message describing the result
data
Technology[]
Array of technologies found (only present when data is available)

Technology Object

name
string
required
Name of the technology
description
string
required
Description of what the technology does
categories
string[]
required
Categories this technology belongs to
sub_technologies
SubTechnology[]
Array of related sub-technologies

SubTechnology Object

name
string
required
Name of the sub-technology
description
string
required
Description of the sub-technology
categories
string[]
Categories this sub-technology belongs to

Use Cases

  • Competitive Analysis: Understand what technologies your competitors are using
  • Sales Intelligence: Identify prospects based on their technology stack
  • Market Research: Analyze technology adoption trends across industries
  • Lead Qualification: Prioritize leads based on their tech infrastructure

Authorizations

X-API-Key
string
header
required

Body

application/json

Response

200 - application/json

Successful response with technology stack information

The response is of type object.