# WordPress Bulk Detect

> WordPress Bulk Detect 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).

Detects WordPress presence and fingerprint for up to 20 domains in a single concurrent batch call, returning per-item results in input order with error counts.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/site/wordpress
- 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/wordpress-bulk-detect-b10f522c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AH06QNWm1j_OfuauGDEHw

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 wordpress-bulk-detect-b10f522c
```

Example prompt: Check all of these domains for WordPress — acme.com, globalretail.io, techtalk.net, fashionblog.co, newsportal.org — and tell me which ones are running WordPress along with any fingerprint details you find.

## When to prefer this

Choose this endpoint when you need to check 2–20 domains for WordPress in one operation and want concurrent processing with results in input order. It is more efficient than calling the single /site/wordpress endpoint repeatedly when you hold a list of domains. Prefer the single endpoint for one-off checks. Not suitable for lists larger than 20 domains (split into multiple batches).

## Known failure modes

- Exceeds 20-domain limit per batch call
- Individual domain unreachable or times out — reflected in per-item error field and failure count
- Invalid domain format in input list
- Network or upstream fetch failure for specific domains
- Payment not completed or insufficient funds (x402 payment required)

## How this service works

Bulk wordpress detect: up to 20 domains 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/wordpress endpoint (WordPress detection and fingerprint). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

Returns an ordered array of per-domain results matching the input order, each containing the WordPress detection status and fingerprint information (version, theme, plugins where detectable), plus a per-item error field and an overall count of failed lookups.

## 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/wordpress-bulk-detect-b10f522c/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)
