# Orthogonal PredictLeads Website Evolution Tracker

> Orthogonal PredictLeads Website Evolution Tracker 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 the historical evolution of a company's website content over time, returning timestamped snapshots of changes for a specific company domain.

## Facts

- Endpoint: GET https://x402.orthogonal.com/predictleads/v3/companies/stripe.com/website_evolution
- 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/orthogonal-predictleads-website-evolution-tracker-1a5e0551
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HADg7epVwIxHNGJHYMzbE

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 orthogonal-predictleads-website-evolution-tracker-1a5e0551
```

Example prompt: Can you pull up the website evolution history for stripe.com and show me changes detected from January 1 2024 to June 30 2024, starting on page 1?

## When to prefer this

Choose this endpoint when you need to understand how a specific company's website has changed over time — useful for competitive analysis, sales intelligence, or due diligence. Prefer this over generic web scraping when you need historical change data rather than a current snapshot. The pagination billing model (free subsequent pages) makes it cost-effective for retrieving large histories.

## Known failure modes

- Company domain not found or not tracked — returns empty results
- Invalid date format for first_seen_at_from or first_seen_at_until — returns 400 error
- Invalid page or limit parameter — returns 400 validation error
- Changing filter parameters while passing parentRequestId starts a new billable request
- Rate limiting or quota exceeded — returns 429 error
- Network timeout for large paginated result sets

## How this service works

Track website changes over time 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 timestamped website change records for the specified company domain, each entry containing details about what changed on the website and when it was first detected. Includes billing metadata with a requestId for pagination continuity and cost management (subsequent pages on the same logical query are free).

## 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"
      },
      "first_seen_at_from": {
       "type": "string"
      },
      "first_seen_at_until": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orthogonal-predictleads-website-evolution-tracker-1a5e0551/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)
