# footer-links-extract

> footer-links-extract is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Extracts and classifies all links found in a webpage's footer, categorizing them as privacy policy, terms of service, contact, careers, social profiles, app-store links, and more.

## Facts

- Endpoint: GET https://intel.rallylive.ca/page/footer
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/footer-links-extract-8ef817b7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DbKsBewFOJcG1Lax41qOr

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 footer-links-extract-8ef817b7
```

Example prompt: Can you pull all the footer links from acmecorp.com and tell me which ones are their privacy policy, terms of service, contact page, and social media profiles?

## When to prefer this

Choose this endpoint when you specifically need to discover and classify footer links for compliance, legal, or contact-discovery purposes — especially when you need links pre-categorized by type (privacy, ToS, social, app-store) rather than scraping all page links generically. It is more targeted than a full-page scraper and cheaper than running classification yourself on raw scrape output.

## Known failure modes

- URL is unreachable or returns a non-200 status — endpoint may return an error or empty result
- Page has no discernible footer section — returns empty or minimal link set
- Dynamically rendered footer (JavaScript-heavy SPA) may not be fully captured
- Unusual footer structure may cause misclassification of link types
- Rate limiting or bot protection on the target domain may block the fetch

## How this service works

Footer link extraction with classification: privacy policy, terms of service, cookie policy, contact, careers, about, press, status page, social profiles, app-store links and everything else found in the page footer. Compliance and contact discovery. $0.01 per page.

## Output

Returns a structured list of all links found in the page footer, each classified by type (e.g. privacy_policy, terms_of_service, cookie_policy, contact, careers, about, press, status_page, social_profile, app_store, other), including the link URL, anchor text, and classification label.

## 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/footer-links-extract-8ef817b7/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)
