# analytics-id-extract

> analytics-id-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-14).

Extracts all analytics and tracking tag IDs (Google Analytics, GTM, Google Ads, Meta Pixel, Hotjar, Clarity, HubSpot, LinkedIn, TikTok, Pinterest) from a webpage's HTML

## Facts

- Endpoint: GET https://intel.rallylive.ca/site/analytics-ids
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/analytics-id-extract-f75e5ad5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rMljxtWmB1XbWOf3F2-K-

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 analytics-id-extract-f75e5ad5
```

Example prompt: Can you pull all the analytics and tracking tag IDs from https://example.com — I want to see if they're using Google Analytics, Meta Pixel, GTM, or any other ad pixels on that page?

## When to prefer this

Use this endpoint when you need to audit, verify, or research the analytics and advertising pixel setup of any public webpage. It's ideal for competitive intelligence (discovering what ad networks a competitor uses), install verification (confirming your own tags are present), and cross-site ownership investigation (matching shared IDs across domains). Prefer this over general web scraping tools when you specifically need structured extraction of known analytics tag patterns.

## Known failure modes

- URL is unreachable or returns non-200 status — endpoint may return an error or empty result
- Page uses server-side tag loading or tag containers that inject IDs dynamically via JavaScript — statically parsed HTML may miss dynamically loaded tags
- Anti-bot measures on the target page block the crawler — resulting in incomplete or no ID extraction
- Page has no analytics tags installed — returns empty lists for all tag types
- Malformed or non-standard tag implementations may go undetected

## How this service works

Analytics and pixel ID extractor: all Google Analytics (G-/UA-), Google Tag Manager (GTM-), Google Ads (AW-), Meta Pixel, Hotjar, Clarity, HubSpot portal, LinkedIn partner, TikTok and Pinterest tag IDs found in a page's HTML. Link properties across sites, verify installs, research competitors. $0.01 per page.

## Output

A structured list of all detected analytics and advertising tag IDs found in the page's HTML, organized by platform: Google Analytics (G-/UA- prefixed IDs), Google Tag Manager (GTM- IDs), Google Ads conversion IDs (AW-), Meta Pixel IDs, Hotjar site IDs, Microsoft Clarity project IDs, HubSpot portal IDs, LinkedIn partner IDs, TikTok pixel IDs, and Pinterest tag IDs.

## 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/analytics-id-extract-f75e5ad5/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)
