# meta-tags-all-bulk

> meta-tags-all-bulk is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Fetches every meta tag from up to 20 URLs concurrently in a single call, returning results in input order with per-item error reporting

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/site/meta-all
- Price: $0.1/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-bulk-ea6f0be0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iHgWjpdhhjLZUTru-2vsm

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-bulk-ea6f0be0
```

Example prompt: Can you pull all the meta tags from these 15 URLs for me at once — I need every meta tag from each page, and flag any that fail: [list of URLs]

## When to prefer this

Choose this endpoint when you have a list of 2–20 URLs and need all meta tags from each page, and want concurrent processing with ordered results and graceful per-item error handling — avoiding the overhead of sequential single-URL calls. Prefer this over the single /site/meta-all endpoint whenever you hold a batch of URLs that need to be processed together for SEO audits, content enrichment pipelines, or competitive analysis workflows.

## Known failure modes

- Individual URL fetch failures captured in per-item error field rather than failing the whole batch
- URLs that are unreachable or return non-200 status recorded as per-item errors
- Batch size exceeding 20 URLs may be rejected or silently truncated
- Payment failure (x402) if USDC balance is insufficient for the $0.10 per call fee
- Slow or timeout-prone pages may cause individual item errors while others succeed
- Malformed URLs in the input list result in per-item error entries

## How this service works

Bulk meta tags all: up to 20 urls in one call, processed concurrently, results returned in input order with a per-item error field and a count of failures. Same answer per item as the single /site/meta-all endpoint (Every meta tag on a page). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of results corresponding to the input URLs, where each item contains all meta tags found on that page (matching the single /site/meta-all endpoint output), a per-item error field if the URL failed to process, and a summary count of total failures across the batch.

## 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-bulk-ea6f0be0/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)
