# WordPress Detect

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

Detects whether a site runs WordPress and fingerprints its version, theme, plugins, REST API exposure, XML-RPC status, and login page presence.

## Facts

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

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-detect-a295e5df
```

Example prompt: Can you check if example.com is running WordPress, and if so tell me the version, what theme and plugins are visible, and whether the REST API or XML-RPC are exposed?

## When to prefer this

Choose this endpoint when you need a quick, low-cost ($0.01) WordPress-specific fingerprint of a single domain — covering version, theme, plugins, and attack-surface exposure — rather than a broad tech-stack scan. Prefer it over the sibling website-tech-stack endpoint when you specifically need WordPress REST API, XML-RPC, and login page exposure details for security or sales workflows.

## Known failure modes

- Site is not WordPress — detection returns negative with no further fingerprint data
- Site blocks crawlers or returns 403/429, preventing HTML analysis
- WordPress version is hidden (no generator tag or feed) — version field returns null
- Plugins loaded via CDN or obfuscated paths may not be detected
- XML-RPC or REST API behind WAF may appear unreachable even if enabled
- Payment failure (402) if USDC balance is insufficient

## How this service works

WordPress detection and fingerprint: is the site WordPress, the version from the generator tag or feed, the active theme and plugins visible in HTML paths, whether the REST API (/wp-json) and XML-RPC are exposed, and the login page presence. Security and sales research. $0.01 per site.

## Output

Returns a structured report indicating whether the target site is WordPress, the detected version (from generator tag or RSS feed), the active theme name, a list of plugins visible in HTML asset paths, whether /wp-json (REST API) is accessible, whether xmlrpc.php is exposed, and whether the login page (wp-login.php) is present.

## 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-detect-a295e5df/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)
