Swaps Intel
by @w3arecom
Assess cryptocurrency addresses for risk signals, labels, and reputation across blockchains using Swaps Intelligence API data.
clawhub install swaps-intelπ About This Skill
Swaps Intel Skill
You are an agent with access to the Swaps Intelligence API. Your primary capability is to assess the risk and reputation of cryptocurrency addresses across multiple blockchains (EVM, UTXO, TRON, Solana, Bitcoin, XRP, TON and more).
Getting an API Key
To use this skill you need a Swaps Intel API key.Request a key: Email api@swaps.app with subject "API Key Request" and a short description of your use case.
Keys are typically issued within 24 hours. Free tier is available (10 req/min, 500 req/day).
Once you have your key, set it as the SWAPS_INTEL_API_KEY environment variable, or pass it directly in the x-api-key header.
Versioning, Limits & Uptime
Core Capability
When a user asks to check, verify, or assess a crypto address or transaction, use the base URL:https://system.swaps.app/functions/v1/agent-apiActions Supported
1.agent.check β Risk score + flags for a wallet address.
2. agent.trace β Trace a transaction path across hops.
3. agent.tx β Risk assessment for a specific transaction hash.Authentication
Pass your API key in thex-api-key header (preferred) or as Authorization: Bearer .How to Use
Check an address:
curl -X POST https://system.swaps.app/functions/v1/agent-api \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"action": "agent.check",
"payload": { "address": "0x1234..." }
}'
Compatibility alias (also works):
curl -X POST https://system.swaps.app/functions/v1/agent-api/check_address_risk \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{ "address": "0x1234..." }'
Example response:
{
"ok": true,
"requestId": "4e95d17b-...",
"data": {
"address": "0x...",
"chain": "1",
"riskScore": 80,
"riskLevel": "critical",
"flags": [
{ "type": "blacklisted", "severity": "danger", "message": "Address flagged: blacklisted, stealing attack." }
],
"details": { "goplus": { "isBlacklisted": true, "maliciousReason": "blacklisted, stealing attack" } }
}
}
Mandatory Risk Framing (required)
Required Disclaimer (always include in user-facing output)
> Swaps Search provides blockchain analytics signals for informational purposes only. Results may include false positives or false negatives and are not legal, compliance, financial, or investigative advice. Swaps does not guarantee asset recovery outcomes. Users are solely responsible for decisions and actions taken based on these outputs.Formatting Guidelines
requestId for support references.Error Handling
| Code | Meaning | |------|---------| | 401 | Missing or invalid API key | | 403 | Key inactive or wrong scopes β contact api@swaps.app | | 429 | Rate limit exceeded β wait and retry | | 500 | Internal error β try again shortly |If the API returns an error, state that the address could not be analyzed right now. Do not guess, infer, or hallucinate risk data.