get_funding_clues
Compare recent native funders across at most five wallets. Shared funding does not prove common ownership.
Compare wallet funding
Compare recent native funders across at most five wallets. Shared funding does not prove common ownership.
Permission and calling convention
Required scope: chain:read. This tool reads data or account-owned state.
This tool does not sign or broadcast a transaction. Check errors, source timestamps and explicit unavailable fields before using the result.
POST /api/tools/get_funding_clues
Authorization: Bearer <ULTRON_ACCESS_KEY>
Content-Type: application/jsonInput schema
Inputs are validated against this current schema. Use exact values from live source results rather than substituting a ticker for a contract or a different chain.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"wallets": {
"minItems": 2,
"maxItems": 5,
"type": "array",
"items": {
"type": "string",
"pattern": "^0x[0-9a-fA-F]{40}$"
}
},
"hours": {
"default": 24,
"type": "number",
"minimum": 1,
"maximum": 168
}
},
"required": [
"wallets",
"hours"
],
"additionalProperties": false
}