TraceFast knowledge graph: address attributes of an Ethereum address — account nature, on-
TraceFast knowledge graph: address attributes of an Ethereum address — account nature, on-chain presence and derived traits. Path address: 0x-prefixed, 40 hex. Attribute dictionary: https://docs.tracefast.xyz/api/address-attributes.md
50000 (raw units)
price
12
calls / 30d
1
unique payers
2026-09-06
updated
Provider
mpp.tracefast.xyz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x2A65491E93Ad0d484b74405401A38e2E0E5EDd7e",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
},
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"data": {
"attributes": [
"address_nature:eoa_currently",
"derived:account_type"
],
"chainId": 1,
"entity": "0x4838b106fce9647bdf1e7877bf73ce8b0bad5f97"
}
},
"type": "json"
}
},
"routeTemplate": "/api/v1/chains/1/entities/:address/attributes",
"schema": {
"properties": {
"input": {
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"type": "object"
}
},
"required": [
"method"
]
}
}
}
}
}Use it
curl
curl "https://mpp.tracefast.xyz/api/v1/chains/1/entities/:address/attributes" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://mpp.tracefast.xyz/api/v1/chains/1/entities/:address/attributes");
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://mpp.tracefast.xyz/api/v1/chains/1/entities/:address/attributes")
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/13201.json, and this resource appears in /discovery/resources and /discovery/search.