{
  "x402Version": 2,
  "id": 4648,
  "slug": "4648",
  "resource": "https://longwatch.dev/check",
  "description": "This-session snapshot only — no watch, no cursor. Use when you will not come back. Required by type: url/rss/x402 need url; price needs coin plus above, below, or move_pct_24h; edgar needs ticker or cik. 8-K items are decoded, Form 4 trades parsed, and x402 probes validate the unpaid 402 challenge without sending payment. If the job spans runs, create_watch instead and persist watch_id + key.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x8CB34360d7BB93D4386384D549D69ecE30F1aB48",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "1000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "method": "GET",
          "queryParams": {
            "forms": [
              "8-K",
              "4"
            ],
            "ticker": "NVDA",
            "type": "edgar"
          },
          "type": "http"
        },
        "output": {
          "example": {
            "result": {
              "company": "NVIDIA CORP",
              "filings": [
                {
                  "form": "4",
                  "summary": "CFO bought 10,000 shares"
                }
              ]
            },
            "type": "edgar",
            "watch": {
              "body": {
                "forms": [
                  "8-K",
                  "4"
                ],
                "ticker": "NVDA",
                "type": "edgar"
              },
              "create": "POST /watches"
            }
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "method": {
                "enum": [
                  "GET"
                ],
                "type": "string"
              },
              "queryParams": {
                "oneOf": [
                  {
                    "properties": {
                      "type": {
                        "const": "url"
                      }
                    },
                    "required": [
                      "type",
                      "url"
                    ],
                    "title": "Web page"
                  },
                  {
                    "properties": {
                      "type": {
                        "const": "rss"
                      }
                    },
                    "required": [
                      "type",
                      "url"
                    ],
                    "title": "RSS feed"
                  },
                  {
                    "anyOf": [
                      {
                        "required": [
                          "above"
                        ]
                      },
                      {
                        "required": [
                          "below"
                        ]
                      },
                      {
                        "required": [
                          "move_pct_24h"
                        ]
                      }
                    ],
                    "properties": {
                      "type": {
                        "const": "price"
                      }
                    },
                    "required": [
                      "type",
                      "coin"
                    ],
                    "title": "Crypto price"
                  },
                  {
                    "anyOf": [
                      {
                        "required": [
                          "ticker"
                        ]
                      },
                      {
                        "required": [
                          "cik"
                        ]
                      }
                    ],
                    "properties": {
                      "type": {
                        "const": "edgar"
                      }
                    },
                    "required": [
                      "type"
                    ],
                    "title": "SEC EDGAR filings"
                  },
                  {
                    "properties": {
                      "type": {
                        "const": "x402"
                      }
                    },
                    "required": [
                      "type",
                      "url"
                    ],
                    "title": "x402 endpoint"
                  }
                ],
                "properties": {
                  "above": {
                    "description": "price: alert when USD price crosses above",
                    "type": "number"
                  },
                  "below": {
                    "description": "price: alert when USD price crosses below",
                    "type": "number"
                  },
                  "body": {
                    "additionalProperties": true,
                    "description": "x402: optional qualified JSON request body",
                    "type": "object"
                  },
                  "cik": {
                    "description": "edgar: SEC CIK, alternative to ticker",
                    "type": "number"
                  },
                  "coin": {
                    "description": "price: CoinGecko id, e.g. bitcoin",
                    "type": "string"
                  },
                  "expected_amount_atomic": {
                    "description": "x402: optional expected token amount in atomic units",
                    "type": "string"
                  },
                  "expected_network": {
                    "description": "x402: optional expected CAIP-2 network, e.g. eip155:8453",
                    "type": "string"
                  },
                  "expected_scheme": {
                    "description": "x402: optional expected scheme, e.g. exact",
                    "type": "string"
                  },
                  "forms": {
                    "description": "edgar: form filter, e.g. [\"8-K\",\"4\"]",
                    "items": {
                      "type": "string"
                    },
                    "type": "array"
                  },
                  "method": {
                    "description": "x402: unpaid probe method",
                    "enum": [
                      "GET",
                      "POST",
                      "PUT",
                      "PATCH",
                      "DELETE",
                      "HEAD"
                    ],
                    "type": "string"
                  },
                  "move_pct_24h": {
                    "description": "price: alert when abs 24h change exceeds this pct",
                    "type": "number"
                  },
                  "ticker": {
                    "description": "edgar: stock ticker",
                    "type": "string"
                  },
                  "type": {
                    "description": "watch type",
                    "enum": [
                      "url",
                      "rss",
                      "price",
                      "edgar",
                      "x402"
                    ],
                    "type": "string"
                  },
                  "url": {
                    "description": "url|rss|x402: public page, feed, or payment endpoint URL",
                    "type": "string"
                  }
                },
                "required": [
                  "type"
                ],
                "type": "object"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "example": {
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    },
    "eip2612GasSponsoring": {},
    "erc20ApprovalGasSponsoring": {}
  },
  "tags": [
    "bazaar",
    "eip2612GasSponsoring",
    "erc20ApprovalGasSponsoring"
  ],
  "sourceHost": "longwatch.dev",
  "lastUpdated": "2026-09-17T03:52:23.663Z",
  "quality": {
    "calls30d": 2,
    "uniquePayers30d": 2,
    "lastCalledAt": "2026-09-17T03:52:23.3Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "longwatch.dev",
    "manifest_name": "longwatch.dev",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}