# DopamineDesk Tech Stack Lookup

> DopamineDesk Tech Stack Lookup is a paid API for AI agents from ai-data-marketplace-1042299154756.us-central1.run.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns the detected technology stack of a website domain, including frontend, backend, hosting, analytics, and marketing tools, with a confidence score.

## Facts

- Endpoint: GET https://ai-data-marketplace-1042299154756.us-central1.run.app/api/v1/tech_stack_lookup
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dopaminedesk-tech-stack-lookup-40ebe5ff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GvORZndQ6ZS3-HLF166wb

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 dopaminedesk-tech-stack-lookup-40ebe5ff
```

Example prompt: Can you look up the tech stack for stripe.com and tell me what frontend framework, backend, and hosting they use?

## When to prefer this

Use this endpoint when you need a structured, categorized breakdown of a website's technology stack — including frontend, backend, hosting, analytics, and marketing layers — with a confidence score. Prefer it for competitive intelligence, sales prospecting enrichment, or due diligence workflows where you need machine-readable tech profiles per domain. It is distinct from raw web scraping because it interprets detected signals into named technology categories rather than returning raw HTML or headers.

## Known failure modes

- Unknown or very new domain returns empty technology arrays with low confidence score
- Private or obscured tech stacks (e.g. behind Cloudflare proxies) may yield incomplete or inaccurate results
- Invalid domain format returns an input validation error
- Domain with no public web presence returns minimal data
- Payment failure via x402 returns HTTP 402 and the call is not processed

## How this service works

Fetch a public website with private-network blocking and report transparent heuristic technology signatures from markup and headers.

## Output

A JSON object containing the queried domain, categorized arrays of detected technologies (frontend, backend, hosting, analytics, marketing), any additional technology categories found, and a numeric confidence score (0–1) indicating how reliable the detection is.

## 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": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "description": "Website domain name."
      }
     },
     "additionalProperties": true
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "success",
      "source",
      "fetched_at",
      "url",
      "methodology",
      "technologies",
      "response_headers",
      "marketplace_metadata"
     ],
     "properties": {
      "url": {
       "type": "string"
      },
      "source": {
       "type": "string"
      },
      "success": {
       "type": "boolean"
      },
      "fetched_at": {
       "type": "string"
      },
      "methodology": {
       "type": "string"
      },
      "technologies": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "response_headers": {
       "type": "object",
       "required": [
        "server",
        "powered_by",
        "cf_ray"
       ],
       "properties": {
        "cf_ray": {
         "type": "null"
        },
        "server": {
         "type": "string"
        },
        "powered_by": {
         "type": "null"
        }
       },
       "additionalProperties": true
      },
      "marketplace_metadata": {
       "type": "object",
       "required": [
        "data_mode",
        "billable",
        "availability",
        "source"
       ],
       "properties": {
        "source": {
         "type": "string"
        },
        "billable": {
         "type": "boolean"
        },
        "data_mode": {
         "type": "string"
        },
        "availability": {
         "type": "string"
        }
       },
       "additionalProperties": true
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://stripe.com/",
  "source": "live public page and response-header fingerprinting",
  "success": true,
  "fetched_at": "2026-08-07T07:32:48.716Z",
  "methodology": "heuristic signatures only; absence is not proof a technology is unused.",
  "technologies": [
   "Next.js",
   "Stripe"
  ],
  "response_headers": {
   "cf_ray": null,
   "server": "nginx",
   "powered_by": null
  },
  "marketplace_metadata": {
   "source": "live page and response-header fingerprinting",
   "billable": true,
   "data_mode": "live_source",
   "availability": "operational"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dopaminedesk-tech-stack-lookup-40ebe5ff/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ai-data-marketplace-1042299154756.us-central1.run.app](https://www.zero.xyz/host/ai-data-marketplace-1042299154756.us-central1.run.app/llms.txt)
