# meta-tags-all

> meta-tags-all 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 meta tags and head-level link elements from a web page's <head>, including name/property/http-equiv, title, charset, viewport, robots, canonical, language, and link rel tags.

## Facts

- Endpoint: GET https://intel.rallylive.ca/site/meta-all
- 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/meta-tags-all-baa52d1d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YqQBjhZ3TE8khKYrsJPRA

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 meta-tags-all-baa52d1d
```

Example prompt: Can you pull all the meta tags and head link elements from https://example.com — I need the full inventory including open graph, robots, canonical, icons, and any link rel tags for an SEO audit.

## When to prefer this

Choose this endpoint when you need a complete, structured inventory of all <head> metadata from a single page — especially for SEO audits, social sharing verification, integration pre-checks, or comparing metadata across pages. It is more comprehensive than a basic title/description scraper and purpose-built for head-element extraction, making it preferable to general-purpose scrapers when you specifically need meta tags and link rel elements rather than page body content.

## Known failure modes

- Page URL is not reachable or returns a non-200 status — partial or empty response
- Page uses heavy JavaScript rendering so static <head> lacks dynamically injected tags
- URL missing or malformed — request rejected
- Page blocks crawlers via robots.txt or firewall — may return error or blocked response
- Very large or malformed HTML may cause incomplete parsing

## How this service works

Every meta tag on a page: name/property/http-equiv with content, plus title, charset, viewport, robots, canonical, language, and link rel tags (icons, alternates, preconnects). The complete <head> inventory for SEO and integration work. $0.01 per page.

## Output

A structured inventory of all elements found in the page's <head>: every meta tag (name, property, http-equiv, content), the page title, charset declaration, viewport settings, robots directives, canonical URL, language attribute, and all link rel entries including icons, alternate language versions, and preconnect/prefetch hints.

## 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/meta-tags-all-baa52d1d/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)
