ThreatScore RPC
Endpoint
Request schema (JSON-RPC 2.0)
Field
Type
Required
Value
Param
Type
Description
Examples
curl https://YOUR_QUICKNODE_ENDPOINT_HERE.com \
-X POST \
-H "Content-Type: application/json" \
--data '{
"method": "ss_quickscan",
"params": ["0x3A32c2BB167BCC7f5E7fE891526e97079Da4ce88", "1", "1"],
"id": 1,
"jsonrpc": "2.0"
}'import requests
endpoint = "https://YOUR_QUICKNODE_ENDPOINT_HERE.com"
headers = {"Content-Type": "application/json"}
payload = {
"jsonrpc": "2.0",
"method": "ss_quickscan",
"params": [
"0x3A32c2BB167BCC7f5E7fE891526e97079Da4ce88",
"1",
"1"
],
"id": 1,
}
resp = requests.post(endpoint, headers=headers, json=payload, timeout=20)
print(resp.status_code, resp.text)Responses
Notes
Last updated