# structured-data-extract-bulk

> structured-data-extract-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).

Extracts JSON-LD structured data from up to 20 URLs in a single concurrent batch call, returning results in input order with per-item error reporting.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/site/jsonld
- 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/structured-data-extract-bulk-2c29e771
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SDZndtikHZCJ9pjF4JOYw

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 structured-data-extract-bulk-2c29e771
```

Example prompt: I have a list of 15 product page URLs — can you pull the JSON-LD structured data from all of them in one go and tell me which ones failed?

## When to prefer this

Choose this endpoint when you have a list of 2–20 URLs and need to extract JSON-LD structured data from all of them efficiently in a single API call. It processes URLs concurrently and preserves input order, making it ideal for batch enrichment pipelines. Prefer the single /site/jsonld endpoint for one-off extractions. Do not use this if you need more than 20 URLs in one call — split into multiple batches instead.

## Known failure modes

- URL is unreachable or returns non-2xx status — per-item error field populated
- Page has no JSON-LD structured data — empty result for that item
- Input list exceeds 20 URLs — request rejected
- Invalid URL format in the input list — per-item error
- Network timeout fetching a URL — per-item error with timeout indication
- Malformed JSON-LD on the page — parse error in per-item field

## How this service works

Bulk structured data extract: 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/jsonld endpoint (Structured data extractor). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of extraction results matching the input URL order. Each item contains the JSON-LD structured data found on that page (same output as the single /site/jsonld endpoint) plus a per-item error field indicating any failure. A top-level failure count summarizes how many URLs could not be processed.

## 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/structured-data-extract-bulk-2c29e771/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)
