ERC-8004 Explorer by

Last updated 2026-04-30

Validators

Paywalled via x402. See x402 payment flow.

GET /v1/validators/:address/requests

All validation requests routed to a specific validator address. Useful for auditing validator behavior, response time, and which agents they cover.

curl -i "https://erc-8004.quicknode.com/v1/validators/0xValidatorAddress/requests?network=base-mainnet"

Path params

Param Notes
address Validator address (0x…). 40-hex, with or without 0x prefix.

Query params

Param Type Notes
network string Network slug. Optional.
tag string Filter by validation tag.
has_response bool Only requests with (or without) a response payload.
since, until ISO 8601 Time-bound.
include_testnets bool Default false.
page, per_page int Pagination.

Response

{
  "data": [
    {
      "request_hash": "0x…",
      "agent_id": 42,
      "network": { "slug": "base-mainnet", "name": "Base", "chain_id": 8453 },
      "response": "...",
      "has_response": true,
      "tag": "tee-attestation",
      "request_uri": "ipfs://…",
      "response_uri": "ipfs://…",
      "response_hash": "0x…",
      "block_number": 41700000,
      "transaction_hash": "0x…",
      "validated_at": "2026-04-15T08:30:00Z"
    }
  ],
  "meta": {
    "page": 1,
    "per_page": 50,
    "total_count": 137,
    "summary": {
      "total": 137,
      "with_response": 129,
      "avg_response_time": "P0DT2H15M"
    }
  }
}

The summary block on meta is computed across the full filtered set, not just the current page.