API · x402

Match an existing kit_<sha256> fingerprint ID against the kit corpus

Match an existing kit_<sha256> fingerprint ID against the kit corpus. Returns the kit family (auto-suggested, pending approval), confidence, evidence, and sighting history. Cheap re-check for dashboards and bots watching for kit reuse. An unknown ID is never…

by RelayShield · verified provider · updated 2026-09-27

What it does

Match an existing kit_<sha256> fingerprint ID against the kit corpus. Returns the kit family (auto-suggested, pending approval), confidence, evidence, and sighting history. Cheap re-check for dashboards and bots watching for kit reuse. An unknown ID is never reported as safe — only as no-match with an explicit not-a-guarantee caveat.

Tags: phishing-kit · smishing · threat-intelligence

Use with an agent

  1. Discover. Agents find this listing with GET https://bazaar.saylorinnovations.com/discovery/search?query=…, the MCP tool search_resources, or /discovery/resources.
  2. Inspect. Fetch /resources/20403.json for the price and payment options.
  3. Pay. Call GET https://api.relayshield.net/v1/payg/scamkit-match. The provider answers 402 with its payment requirements. An x402 client signs one of the options below and retries with PAYMENT-SIGNATURE.
  4. Execute. The provider returns 200 with the data. Agent Bazaar is not in the request path and never sees your payment.

For humans

You don't need an account or an API key; you need a wallet holding a small amount of USDC on Base, Solana, and an x402-capable client (see the examples below). Call the endpoint unpaid first to see exactly what it asks for.

Pricing & payment

Price
$0.1 / request
Protocol
x402 v2
Auth
No account or API key. Pay per request.
Networks
Base, Solana

x402 payment requirements

SchemeNetworkAssetAmountPay toTimeout
exactBase
eip155:8453
USDC$0.10x002CfD89c5636F45E3C8576D6E35154748412bAc300s
exactSolana
solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
USDC$0.1E64PiTT7U8ZUWFKdkrBFw1YzdD2bU1gKcuGnBRVqp7M660s
accepts[] (raw JSON)
[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x002CfD89c5636F45E3C8576D6E35154748412bAc",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "100000",
    "amountUsd": 0.1,
    "maxTimeoutSeconds": 300
  },
  {
    "scheme": "exact",
    "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
    "payTo": "E64PiTT7U8ZUWFKdkrBFw1YzdD2bU1gKcuGnBRVqp7M6",
    "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
    "amount": "100000",
    "amountUsd": 0.1,
    "maxTimeoutSeconds": 60
  }
]

Examples

curl
curl "https://api.relayshield.net/v1/payg/scamkit-match"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.relayshield.net/v1/payg/scamkit-match");
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://api.relayshield.net/v1/payg/scamkit-match")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Details

Provider
RelayShield
Endpoint
https://api.relayshield.net/v1/payg/scamkit-match
Machine-readable
/resources/20403.json