Pre-send safety check: is this recipient a known malicious address (caught live on Base se
Pre-send safety check: is this recipient a known malicious address (caught live on Base seeding address-poisoning via zero-value transfer sprays), or a look-alike of an address you trust? Checks our continuously-updated threat DB + deterministic look-alike logic. Answers an agent's 'is it safe to send here?' before every transfer.
5000 (raw units)
price
7
calls / 30d
2
unique payers
2026-08-31
updated
Provider
x402.dailyelo.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xD617a7145ca56E3ed58d639F9DEC6999B22441eE",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"known_addresses": [
"0x1234bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb5678"
],
"recipient": "0x1234aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa5678"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"action_hint": "do_not_send",
"confidence": 1,
"recipient": "0x1234aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa5678",
"risk_flags": [
"zero_value_transfer_spray"
],
"threat": {
"first_seen": 1719500000,
"reason": "zero_value_transfer_spray"
},
"verdict": "known_threat"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"description": "Before sending funds, check the recipient against our LIVE on-chain threat DB (addresses caught seeding address-poisoning via zero-value transfer sprays on Base) AND optionally against your known_addresses for look-alike spoofing. Deterministic.",
"properties": {
"known_addresses": {
"description": "(optional) your trusted addresses, for look-alike detection",
"items": {
"oneOf": [
{
"type": "string"
},
{
"properties": {
"address": {
"type": "string"
},
"label": {
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}
]
},
"type": "array"
},
"recipient": {
"description": "0x EVM address you are about to send to",
"type": "string"
}
},
"required": [
"recipient"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402.dailyelo.com/v1/recipient-check" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402.dailyelo.com/v1/recipient-check");
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://x402.dailyelo.com/v1/recipient-check")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/2230.json, and this resource appears in /discovery/resources and /discovery/search.