# company-profile-watch

> company-profile-watch is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Monitors a domain's company profile and returns what changed (field-by-field before/after) compared to the previous check, stored for 90 days.

## Facts

- Endpoint: GET https://intel.rallylive.ca/watch/site/company-profile
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/company-profile-watch-49d549b0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Oc9IIZbf8S_-I5nqYFLSl

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 company-profile-watch-49d549b0
```

Example prompt: Keep an eye on the company profile for stripe.com and let me know if anything changes — like their name, description, or any other profile fields — compared to the last time you checked.

## When to prefer this

Choose this endpoint when you need to detect changes to a company's profile data on a specific domain over time, rather than doing a one-off extraction. It is ideal for scheduled monitoring workflows, competitive intelligence pipelines, or due diligence tracking where field-level change detection (with before/after diffs) is required. Prefer it over a plain company-profile extraction endpoint when the goal is change alerting rather than just data retrieval.

## Known failure modes

- Domain not reachable or returns non-200 response — check may fail or return incomplete profile
- No previous snapshot exists (first call) — 'changed' will be false or undefined since there is nothing to compare
- Domain's company profile page is behind authentication or JavaScript rendering — data may be partial
- Rate limiting or network issues on the target domain — check may timeout
- Ambiguous domain format — ensure clean domain is provided without protocol prefix

## How this service works

Change watch for company profile: runs the check and compares it with the result from your previous call for the same domain (kept 90 days), returning the current answer, changed true/false, exactly which fields changed with before/after values, and when it was last seen. Call it on a schedule to be told when company profile from a domain in one call changes. $0.01 per check.

## Output

Returns the current company profile extracted from the domain, a boolean indicating whether anything changed since the last call, a list of exactly which fields changed with their before and after values, and a timestamp of when the profile was last seen. Results are retained and compared over a 90-day window.

## 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": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/company-profile-watch-49d549b0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
