# Social Profiles Finder Change Watch

> Social Profiles Finder Change 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 company's website for changes in its detected social media profile links, returning current results, a changed flag, field-level diffs, and last-seen timestamps.

## Facts

- Endpoint: GET https://intel.rallylive.ca/watch/social-links
- 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/social-profiles-finder-change-watch-6374faa1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_npFwCUcDZ4tB5-0ArhGWa

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 social-profiles-finder-change-watch-6374faa1
```

Example prompt: Set up a recurring check on acmecorp.com so I get alerted whenever their social media profile links change — I want to know exactly which links were added, removed, or updated compared to last time.

## When to prefer this

Choose this endpoint when you need to track changes to a company's social media presence over time rather than just a one-time lookup. It is ideal for scheduled agent workflows that need to detect when social profiles are added, removed, or modified, with automatic diffing against the previous result. Prefer this over a plain social-links lookup when the goal is alerting or monitoring rather than immediate extraction.

## Known failure modes

- Domain not accessible or returns non-200 response — no social links extracted
- No previous check exists for the domain within 90 days — changed flag may be null or unavailable
- Social links hidden behind JavaScript rendering may not be detected
- Rate limiting or network errors on the target domain may result in incomplete extraction
- Domain input missing or malformed — returns validation error

## How this service works

Change watch for social profiles finder: 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 find a company's social media profiles from its website changes. $0.01 per check.

## Output

Returns the current set of detected social media profile URLs for the domain, a boolean 'changed' flag indicating whether results differ from the previous call, a field-level diff showing exactly which social profile links were added, removed, or modified (with before and after values), and a timestamp of when the data was last seen. Previous results are retained for 90 days for comparison.

## 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/social-profiles-finder-change-watch-6374faa1/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)
