<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Andrew Gibbs</title>
    <description>The latest articles on DEV Community by Andrew Gibbs (@relaysh_aea8bcf38177).</description>
    <link>https://dev.to/relaysh_aea8bcf38177</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3933321%2Fd546320c-b664-4cca-b592-7d7d456e4619.png</url>
      <title>DEV Community: Andrew Gibbs</title>
      <link>https://dev.to/relaysh_aea8bcf38177</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/relaysh_aea8bcf38177"/>
    <language>en</language>
    <item>
      <title>5 Crypto Security Signals in One API Call — Wallet Risk, Token Honeypots, SIM Swap and More</title>
      <dc:creator>Andrew Gibbs</dc:creator>
      <pubDate>Fri, 15 May 2026 14:12:03 +0000</pubDate>
      <link>https://dev.to/relaysh_aea8bcf38177/5-crypto-security-signals-in-one-api-call-wallet-risk-token-honeypots-sim-swap-and-more-3eah</link>
      <guid>https://dev.to/relaysh_aea8bcf38177/5-crypto-security-signals-in-one-api-call-wallet-risk-token-honeypots-sim-swap-and-more-3eah</guid>
      <description>&lt;p&gt;If you're building a crypto app, a trading bot, a DeFi dashboard, or an AI agent that touches wallets or tokens, you need security signals baked in — not bolted on after something goes wrong.&lt;/p&gt;

&lt;p&gt;RelayShield Security Intelligence is a single REST API that gives you:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Wallet risk scoring&lt;/strong&gt;: Multi-chain (EVM, Solana, TON)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Token honeypot + rug pull detection&lt;/strong&gt;: Before your users ape in&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;NFT contract risk scanning&lt;/strong&gt;: Ownership, minting, verification flags&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SIM swap detection&lt;/strong&gt;: Live carrier-layer data via Twilio Lookup v2&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Email breach checking&lt;/strong&gt;: 13B+ compromised records&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;No SDKs. Plain JSON in, plain JSON out. Available on RapidAPI (subscription) or x402 USDC micropayments on Base (pay per call, no subscription needed).&lt;/p&gt;

&lt;p&gt;Quickstart — Wallet Risk in Python&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;requests&lt;/span&gt;

&lt;span class="n"&gt;url&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;https://relayshield-security-intelligence.p.rapidapi.com/v1/wallet-risk&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;

&lt;span class="n"&gt;payload&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;address&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;0xYourWalletAddress&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt; &lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="n"&gt;headers&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;x-rapidapi-key&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;YOUR_RAPIDAPI_KEY&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;x-rapidapi-host&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;relayshield-security-intelligence.p.rapidapi.com&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Content-Type&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;application/json&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;span class="n"&gt;response&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;requests&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;post&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;url&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;json&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="n"&gt;payload&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;headers&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="n"&gt;headers&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;response&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;json&lt;/span&gt;&lt;span class="p"&gt;())&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Works with EVM addresses, Solana public keys, and TON wallet addresses — the API auto-detects chain type.&lt;/p&gt;

&lt;p&gt;Quickstart — Token Security (Honeypot Check)&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;payload&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;chain_id&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;1&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;  &lt;span class="c1"&gt;# Ethereum mainnet — use 8453 for Base
&lt;/span&gt;    &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;contract_address&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;0xTokenContractAddress&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;span class="n"&gt;response&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;requests&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;post&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
    &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;https://relayshield-security-intelligence.p.rapidapi.com/v1/token-security&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="n"&gt;json&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="n"&gt;payload&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="n"&gt;headers&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="n"&gt;headers&lt;/span&gt;
&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;response&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;json&lt;/span&gt;&lt;span class="p"&gt;())&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Returns honeypot status, buy/sell tax flags, ownership renounced, hidden owner, and more.&lt;/p&gt;

&lt;p&gt;Pay Per Call with x402 (No Subscription Needed)&lt;/p&gt;

&lt;p&gt;If you're building an agent or a low-volume integration and don't want a monthly subscription, the PAYG endpoints accept x402 USDC micropayments on Base:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Endpoint&lt;/th&gt;
&lt;th&gt;Price&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;/v1/payg/wallet-risk&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;$0.15 USDC&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;/v1/payg/token-security&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;$0.10 USDC&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;/v1/payg/nft-security&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;$0.10 USDC&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;/v1/payg/wallet-screen-batch&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;$0.50 USDC (up to 10 addresses)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;/v1/payg/breach&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;$0.10 USDC&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;/v1/payg/sim-swap&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;$0.25 USDC&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;x402 flow:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Call the endpoint with no payment header → receive &lt;code&gt;402&lt;/code&gt; + &lt;code&gt;PAYMENT-REQUIRED&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Pay USDC on Base to the address in the response&lt;/li&gt;
&lt;li&gt;Retry with &lt;code&gt;X-PAYMENT&lt;/code&gt; header containing payment proof&lt;/li&gt;
&lt;li&gt;API verifies via Coinbase x402 facilitator → returns result&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Use Cases&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;DeFi dashboard&lt;/strong&gt;: Screen every inbound token for honeypots automatically&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Trading bot&lt;/strong&gt;: Run wallet-risk on counterparties before executing swaps&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI agent&lt;/strong&gt;: Give your Claude/GPT agent live security intelligence via MCP or direct API&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Wallet app&lt;/strong&gt;: Alert users when their SIM is swapped before their 2FA is compromised&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Portfolio tracker&lt;/strong&gt;: Flag high-risk wallets and scam tokens in real time&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;MCP Server (Claude / AI Agents)&lt;/p&gt;

&lt;p&gt;If you're building with Claude or want to use these signals inside Claude Desktop:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pip &lt;span class="nb"&gt;install &lt;/span&gt;relayshield-mcp
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Exposes all endpoints as native MCP tools — no API calls to write.&lt;/p&gt;

&lt;p&gt;Links&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;RapidAPI listing&lt;/strong&gt; (subscribe + test in browser): &lt;a href="https://rapidapi.com/relayshield/api/relayshield-security-intelligence" rel="noopener noreferrer"&gt;RelayShield Security Intelligence&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;API docs + landing page&lt;/strong&gt;: &lt;a href="https://relayshield.net" rel="noopener noreferrer"&gt;relayshield.net&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;MCP package&lt;/strong&gt;: &lt;a href="https://pypi.org/project/relayshield-mcp" rel="noopener noreferrer"&gt;pypi.org/project/relayshield-mcp&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Built by a 25-year telecom security professional. Questions welcome in the comments.&lt;/p&gt;

</description>
      <category>security</category>
      <category>cryptocurrency</category>
      <category>api</category>
      <category>python</category>
    </item>
  </channel>
</rss>
