# PredictLeads Technology Stack Detections for a Company

> PredictLeads Technology Stack Detections for a Company is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-13).

Retrieves technology stack detections (tools, frameworks, platforms) used by a specific company, with pagination support

## Facts

- Endpoint: GET https://x402.orthogonal.com/predictleads/v3/companies/stripe.com/technology_detections
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/predictleads-technology-stack-detections-for-a-company-f45af8ca
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yOJ81xmtK6sY-UM4v2RSx

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 predictleads-technology-stack-detections-for-a-company-f45af8ca
```

Example prompt: Can you pull up all the technology stack detections for stripe.com — I want to see what tools and platforms they're running, including when each was first and last seen?

## When to prefer this

Use this endpoint when you need to discover or audit the technology stack of a specific company identified by its domain name. It is ideal for sales intelligence, competitive analysis, and market research workflows where you need structured, timestamped technology detection data. Prefer this over general web scraping when you want clean, pre-parsed technology intelligence rather than raw HTML, and when you need historical first/last-seen metadata per technology.

## Known failure modes

- Invalid or unrecognized company domain returns empty results or 404
- Incorrect date filter formats may cause parameter validation errors
- Exceeding page/limit bounds may return an empty result set
- Payment failure via x402 protocol results in 402 response and no data returned
- Passing a changed filter on a continuation page triggers a new billable request

## How this service works

Get technology stack detections for a specific company Pagination billing: call the first page normally and save billing.requestId from the Orthogonal /v1/run response. For later page, offset, or cursor calls on the same logical search, pass parentRequestId with unchanged non-pagination parameters. Valid continuation calls still get their own request IDs and quoted price, but are charged 0. Changing filters starts a new billable request.

## Output

A paginated list of technology detections for the specified company domain, including technology names, categories, and timestamps for when each technology was first and last seen. Also includes billing metadata with a requestId for chaining subsequent paginated calls at no additional cost.

## 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",
     "properties": {
      "page": {
       "type": "integer",
       "description": "For later pages of the same logical search, keep non-pagination parameters unchanged and pass top-level parentRequestId from the first Orthogonal /v1/run response."
      },
      "limit": {
       "type": "integer"
      },
      "last_seen_at_from": {
       "type": "string"
      },
      "first_seen_at_from": {
       "type": "string"
      },
      "last_seen_at_until": {
       "type": "string"
      },
      "first_seen_at_until": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/predictleads-technology-stack-detections-for-a-company-f45af8ca/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
