# Interzoid Get Tech Stack API

> Interzoid Get Tech Stack API is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Identifies the technology stack (CDN, CMS, hosting, frontend frameworks, backend technologies) used by a given domain or company website

## Facts

- Endpoint: GET https://api.interzoid.com/gettechstack
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-get-tech-stack-api-b39bf807
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mV6dvBpDdtlCdWZPuwigm

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability interzoid-get-tech-stack-api-b39bf807
```

Example prompt: Can you look up the full tech stack for shopify.com — I want to know their CDN, CMS, hosting provider, and what frontend and backend frameworks they're running?

## When to prefer this

Use this endpoint when you need to programmatically identify what technologies power a specific website or company domain — ideal for competitive intelligence, sales prospecting, partner vetting, or data enrichment pipelines where tech stack data about a target company is needed at scale.

## Known failure modes

- Unknown or unresolvable domain returns an error Code with empty tech fields
- Domain with no detectable technology signals may return partial or empty stack fields
- Invalid or malformed domain input may return a validation error
- Rate limiting or insufficient credits returns a credits/auth error

## How this service works

Identify the complete technology stack used by a company or website from a domain lookup, including CMS, frontend frameworks, backend technologies, web server, hosting provider, CDN, analytics, security technologies, and e-commerce platform.

## Output

Returns a JSON object with fields: Code (success/error status), Credits used, DomainName, CDNProvider, CMSPlatform, HostingProvider, FrontendFrameworks, and BackendTechnologies — each describing a layer of the target website's technology stack as identified by Interzoid's AI.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "lookup": "github.com"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "lookup"
     ],
     "properties": {
      "lookup": {
       "type": "string",
       "description": "Domain name or company website to identify the tech stack for"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Code": "Success",
  "Credits": "0",
  "DomainName": "shopify.com",
  "CDNProvider": "Cloudflare",
  "CMSPlatform": "Shopify (proprietary ecommerce platform)",
  "HostingProvider": "Google Cloud Platform (GKE)",
  "FrontendFrameworks": "React, TypeScript, jQuery (legacy)",
  "BackendTechnologies": "Ruby on Rails, MySQL, Redis, Memcached, Kafka, GraphQL"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-get-tech-stack-api-b39bf807/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.interzoid.com](https://www.zero.xyz/host/api.interzoid.com/llms.txt)
