# PredictLeads Technology Detection Lookup

> PredictLeads Technology Detection Lookup 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-14).

Returns a list of companies detected using a specific technology (Stripe), with first/last seen timestamps and pagination support

## Facts

- Endpoint: GET https://x402.orthogonal.com/predictleads/v3/discover/technologies/stripe/technology_detections
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/predictleads-technology-detection-lookup-5107d49e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WkFOgN84xZr8vhm7Pkgr-

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-detection-lookup-5107d49e
```

Example prompt: Find me companies that have been detected using Stripe as a payment technology, first seen between January 1 and March 31 of this year — show me the first page of 25 results.

## When to prefer this

Use this endpoint when you need to identify companies that are using Stripe specifically, for purposes like B2B lead generation, competitive intelligence, or technology adoption monitoring. It is ideal when you want structured, timestamped detection data with efficient pagination billing. Prefer this over generic web scraping when you need reliable, deduplicated, curated technology-usage signals at scale.

## Known failure modes

- Invalid date format for filter parameters returns a 400 error
- Exceeding page limit or invalid page number returns an empty result set or error
- Missing required authentication or payment header results in a 402 Payment Required response
- Using a changed filter parameter on a parentRequestId continuation call triggers a new billable request
- Rate limiting or quota exhaustion may return a 429 response

## How this service works

Find companies using a specific technology 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 company records where each record includes company identifiers, the technology detected (Stripe), and timestamps for when the technology was first and last observed. Also includes a billing requestId for use in subsequent pagination calls at no additional charge.

## 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-detection-lookup-5107d49e/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)
