mirrored listing x402 eip155:8453

Inspect a public HTTPS URL for redirects, metadata, content type, word count, and content

Inspect a public HTTPS URL for redirects, metadata, content type, word count, and content hash.

Do you run pixels.gateway.clawca.sh? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
2000 (raw units)
price
12
calls / 30d
4
unique payers
2026-09-14
updated

Provider

pixels.gateway.clawca.sh · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x9acfDC5A3D6Bfbb127615751E0F0e44014E32abF",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "2000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "agent_context": {
            "agentType": "Codex",
            "client": "agentcash"
          },
          "url": "https://example.com"
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      },
      "output": {
        "example": {
          "canonical_url": null,
          "content_hash": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
          "content_type": "text/html",
          "description": null,
          "fetched_bytes": 1256,
          "final_url": "https://example.com/",
          "language": "en",
          "requested_url": "https://example.com",
          "status_code": 200,
          "title": "Example Domain",
          "word_count": 2
        },
        "type": "json"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "properties": {
                "agent_context": {
                  "description": "Identify the calling agent and payment client. Use Unknown for an unidentified agent and unknown for an unidentified client. No IDs are needed. These answers are reported claims.",
                  "properties": {
                    "agentType": {
                      "description": "Which agent are you running? Choose the closest agent type. For Others, include its name in agentTypeOther. Use Unknown if you cannot identify the agent.",
                      "enum": [
                        "Codex",
                        "Claude Code",
                        "Hermes",
                        "OpenClaw",
                        "Others (Specify)",
                        "Unknown"
                      ],
                      "type": "string"
                    },
                    "agentTypeOther": {
                      "description": "Specify the agent name when agentType is Others (Specify).",
                      "maxLength": 80,
                      "minLength": 1,
                      "type": "string"
                    },
                    "client": {
                      "description": "Which payment client are you using? [agentcash, awal, pay.sh, others, unknown]",
                      "maxLength": 80,
                      "minLength": 1,
                      "type": "string"
                    },
                    "discovery_query": {
                      "description": "What search query did you use to find this service? Omit if unknown or no search was used; do not invent a query from your task.",
                      "maxLength": 500,
                      "minLength": 1,
                      "type": "string"
                    }
                  },
                  "required": [
                    "agentType",
                    "client"
                  ],
                  "type": "object"
                },
                "url": {
                  "format": "uri",
                  "pattern": "^https://",
                  "type": "string"
                }
              },
              "required": [
                "url",
                "agent_context"
              ],
              "type": "object"
            },
            "bodyType": {
              "enum": [
                "json",
                "form-data",
                "text"
              ],
              "type": "string"
            },
            "method": {
              "enum": [
                "POST",
                "PUT",
                "PATCH"
              ],
              "type": "string"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method",
            "bodyType",
            "body"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "properties": {
                "canonical_url": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "content_hash": {
                  "pattern": "^[a-f0-9]{64}$",
                  "type": "string"
                },
                "content_type": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "description": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "fetched_bytes": {
                  "type": "integer"
                },
                "final_url": {
                  "format": "uri",
                  "type": "string"
                },
                "language": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "requested_url": {
                  "format": "uri",
                  "type": "string"
                },
                "status_code": {
                  "type": "integer"
                },
                "title": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "word_count": {
                  "type": "integer"
                }
              },
              "required": [
                "requested_url",
                "final_url",
                "status_code",
                "content_type",
                "title",
                "description",
                "canonical_url",
                "language",
                "word_count",
                "content_hash",
                "fetched_bytes"
              ],
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://pixels.gateway.clawca.sh/v1/link-inspect"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://pixels.gateway.clawca.sh/v1/link-inspect");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://pixels.gateway.clawca.sh/v1/link-inspect")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/8020.json, and this resource appears in /discovery/resources and /discovery/search.