# HTTP Methods Check Bulk

> HTTP Methods Check 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).

Checks which HTTP methods are supported for up to 20 URLs in a single concurrent batch call, returning per-item results in input order with error fields and failure counts.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/site/http-methods
- 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/http-methods-check-bulk-6482d985
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wtdPJrjMxLHy3pwbPP-VP

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 http-methods-check-bulk-6482d985
```

Example prompt: Check which HTTP methods are supported for all 15 URLs in my list — I need them processed concurrently and returned in the same order I provided them, with any per-item errors flagged.

## When to prefer this

Use this endpoint when you need to check HTTP method support for multiple URLs (up to 20) in a single API call rather than making individual requests. It is more efficient than looping over the single /site/http-methods endpoint, processes items concurrently, preserves input order, and surfaces per-item errors without failing the whole batch — ideal for bulk audits, pre-deployment checks, or enriching a list of endpoints.

## Known failure modes

- Individual URL unreachable — per-item error field populated, counted in failure total
- More than 20 URLs submitted — request rejected or truncated
- Target server blocks method probing — may return empty or misleading method lists
- Network timeout on one or more URLs — reflected in per-item error, not whole-batch failure
- Invalid URL format in input list — per-item error returned for that entry

## How this service works

Bulk http methods check: 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/http-methods endpoint (HTTP methods check). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of per-URL results matching the input order, each containing the HTTP methods supported by that URL, a per-item error field indicating any failure, and an aggregate count of how many items failed 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/http-methods-check-bulk-6482d985/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)
