<?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: 0xSonOfUri</title>
    <description>The latest articles on DEV Community by 0xSonOfUri (@sonofuri).</description>
    <link>https://dev.to/sonofuri</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%2F1346121%2F190b05e6-8fcf-477b-8f21-3e3441168fdc.jpg</url>
      <title>DEV Community: 0xSonOfUri</title>
      <link>https://dev.to/sonofuri</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sonofuri"/>
    <language>en</language>
    <item>
      <title>Building Global Payment Products Without Owning Banking Infrastructure</title>
      <dc:creator>0xSonOfUri</dc:creator>
      <pubDate>Fri, 12 Jun 2026 23:46:55 +0000</pubDate>
      <link>https://dev.to/afriex/building-global-payment-products-without-owning-banking-infrastructure-2h76</link>
      <guid>https://dev.to/afriex/building-global-payment-products-without-owning-banking-infrastructure-2h76</guid>
      <description>&lt;p&gt;A decade ago, building a financial product required enormous resources.&lt;/p&gt;

&lt;p&gt;If you wanted to launch a payments company, you needed:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;banking relationships&lt;/li&gt;
&lt;li&gt;settlement infrastructure&lt;/li&gt;
&lt;li&gt;compliance operations&lt;/li&gt;
&lt;li&gt;payment processing agreements&lt;/li&gt;
&lt;li&gt;treasury management systems&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For most startups, that was simply out of reach.&lt;/p&gt;

&lt;p&gt;Today, things look very different.&lt;/p&gt;

&lt;p&gt;A small team can build products that move money globally without owning a bank, operating payment rails, or maintaining treasury infrastructure.&lt;/p&gt;

&lt;p&gt;The secret isn't magic.&lt;/p&gt;

&lt;p&gt;It's infrastructure.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Old Fintech Playbook
&lt;/h2&gt;

&lt;p&gt;Historically, launching a financial product meant becoming part of the financial system itself.&lt;/p&gt;

&lt;p&gt;That often involved:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;obtaining licenses&lt;/li&gt;
&lt;li&gt;negotiating banking partnerships&lt;/li&gt;
&lt;li&gt;integrating with payment processors&lt;/li&gt;
&lt;li&gt;maintaining settlement accounts&lt;/li&gt;
&lt;li&gt;building compliance operations&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The barriers were high.&lt;/p&gt;

&lt;p&gt;And for good reason.&lt;/p&gt;

&lt;p&gt;Moving money is complicated.&lt;/p&gt;




&lt;h2&gt;
  
  
  The New Fintech Stack
&lt;/h2&gt;

&lt;p&gt;Modern fintech companies increasingly build on top of specialized infrastructure providers.&lt;/p&gt;

&lt;p&gt;Instead of building everything themselves, they compose financial primitives.&lt;/p&gt;

&lt;p&gt;Think of it like cloud computing.&lt;/p&gt;

&lt;p&gt;Most startups don't build their own data centers.&lt;/p&gt;

&lt;p&gt;They build on AWS, Google Cloud, or Azure.&lt;/p&gt;

&lt;p&gt;Financial infrastructure is moving in a similar direction.&lt;/p&gt;

&lt;p&gt;Developers now have access to building blocks such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;virtual accounts&lt;/li&gt;
&lt;li&gt;wallet infrastructure&lt;/li&gt;
&lt;li&gt;payouts&lt;/li&gt;
&lt;li&gt;foreign exchange&lt;/li&gt;
&lt;li&gt;stablecoin settlement&lt;/li&gt;
&lt;li&gt;transaction monitoring&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;through APIs.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Shift from Banks to Building Blocks
&lt;/h2&gt;

&lt;p&gt;Consider a simple requirement:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Receive money from customers.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Years ago, that might require:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;direct banking integrations&lt;/li&gt;
&lt;li&gt;account provisioning systems&lt;/li&gt;
&lt;li&gt;settlement infrastructure&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Today, an API can provision receiving accounts for you.&lt;/p&gt;

&lt;p&gt;The same pattern appears across the financial stack.&lt;/p&gt;

&lt;p&gt;Need to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;receive funds?&lt;/li&gt;
&lt;li&gt;send payouts?&lt;/li&gt;
&lt;li&gt;manage wallets?&lt;/li&gt;
&lt;li&gt;support multiple currencies?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;There are infrastructure layers designed to handle those complexities.&lt;/p&gt;




&lt;h2&gt;
  
  
  What Developers Actually Build
&lt;/h2&gt;

&lt;p&gt;The interesting thing is that most fintech startups are not building payment rails.&lt;/p&gt;

&lt;p&gt;They're building products.&lt;/p&gt;

&lt;p&gt;The rails already exist.&lt;/p&gt;

&lt;p&gt;The real value often comes from:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;user experience&lt;/li&gt;
&lt;li&gt;automation&lt;/li&gt;
&lt;li&gt;workflows&lt;/li&gt;
&lt;li&gt;business logic&lt;/li&gt;
&lt;li&gt;distribution&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Not from rebuilding banking infrastructure.&lt;/p&gt;

&lt;p&gt;For example:&lt;/p&gt;

&lt;p&gt;A freelancer platform doesn't need to become a bank.&lt;/p&gt;

&lt;p&gt;It needs:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;customer onboarding&lt;/li&gt;
&lt;li&gt;collections&lt;/li&gt;
&lt;li&gt;payouts&lt;/li&gt;
&lt;li&gt;reporting&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Infrastructure providers handle the rest.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Role of Stablecoins
&lt;/h2&gt;

&lt;p&gt;Stablecoins are accelerating this trend.&lt;/p&gt;

&lt;p&gt;Many cross-border payment platforms now use stablecoins internally for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;treasury management&lt;/li&gt;
&lt;li&gt;liquidity movement&lt;/li&gt;
&lt;li&gt;settlement&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;while customers continue interacting with familiar payment experiences.&lt;/p&gt;

&lt;p&gt;The customer sees:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Send Money
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The infrastructure may involve:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Collection
↓
Settlement
↓
Stablecoin Treasury
↓
Liquidity Partner
↓
Payout
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The complexity is hidden behind APIs and infrastructure layers.&lt;/p&gt;




&lt;h2&gt;
  
  
  What This Means for Builders
&lt;/h2&gt;

&lt;p&gt;The question is no longer:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;How do I become a bank?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The question is:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;What can I build on top of financial infrastructure?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That opens the door to entirely new products.&lt;/p&gt;

&lt;p&gt;Developers can focus on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;marketplaces&lt;/li&gt;
&lt;li&gt;payroll systems&lt;/li&gt;
&lt;li&gt;creator platforms&lt;/li&gt;
&lt;li&gt;remittance products&lt;/li&gt;
&lt;li&gt;B2B payment workflows&lt;/li&gt;
&lt;li&gt;treasury automation&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;without spending years building foundational infrastructure.&lt;/p&gt;




&lt;h2&gt;
  
  
  Infrastructure Is Becoming the Advantage
&lt;/h2&gt;

&lt;p&gt;The most successful fintech companies of the next decade may not be the ones that own the rails.&lt;/p&gt;

&lt;p&gt;They may be the ones that use the rails most effectively.&lt;/p&gt;

&lt;p&gt;Just as cloud providers abstracted away servers, modern financial infrastructure is abstracting away much of the complexity involved in moving money.&lt;/p&gt;

&lt;p&gt;That allows builders to focus on solving customer problems rather than rebuilding the financial system from scratch.&lt;/p&gt;




&lt;h2&gt;
  
  
  Final Thoughts
&lt;/h2&gt;

&lt;p&gt;Building a global payment product used to require becoming part of the banking system.&lt;/p&gt;

&lt;p&gt;Today, developers can access many of the same capabilities through infrastructure providers and APIs.&lt;/p&gt;

&lt;p&gt;The opportunity has shifted.&lt;/p&gt;

&lt;p&gt;Less time spent building rails.&lt;/p&gt;

&lt;p&gt;More time spent building products.&lt;/p&gt;

&lt;p&gt;And that might be one of the most important changes happening in fintech today.&lt;/p&gt;

</description>
      <category>fintech</category>
      <category>payment</category>
      <category>banking</category>
    </item>
    <item>
      <title>What Happens After You Click “Send Money”? Lessons from the Afriex Utila Partnership</title>
      <dc:creator>0xSonOfUri</dc:creator>
      <pubDate>Fri, 29 May 2026 15:42:42 +0000</pubDate>
      <link>https://dev.to/afriex/what-happens-after-you-click-send-money-lessons-from-the-afriex-x-utila-partnership-3o1d</link>
      <guid>https://dev.to/afriex/what-happens-after-you-click-send-money-lessons-from-the-afriex-x-utila-partnership-3o1d</guid>
      <description>&lt;p&gt;Most people think cross-border payments are simple.&lt;/p&gt;

&lt;p&gt;You open an app.&lt;/p&gt;

&lt;p&gt;Enter an amount.&lt;/p&gt;

&lt;p&gt;Choose a recipient.&lt;/p&gt;

&lt;p&gt;Click send.&lt;/p&gt;

&lt;p&gt;A few moments later, the money arrives.&lt;/p&gt;

&lt;p&gt;Simple.&lt;/p&gt;

&lt;p&gt;At least on the surface.&lt;/p&gt;

&lt;p&gt;What most people never see is the infrastructure required to make that experience possible at scale.&lt;/p&gt;

&lt;p&gt;Recently, Utila published a case study about its partnership with Afriex, a company operating cross-border payment corridors across Africa. While the announcement focused on infrastructure, it revealed something much more interesting:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The real challenge in cross-border payments isn't sending money. It's managing liquidity, treasury operations, and settlement across multiple markets simultaneously.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;And that's where stablecoins are quietly becoming critical infrastructure.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Hidden Side of Cross-Border Payments
&lt;/h2&gt;

&lt;p&gt;When users think about a transfer, they typically imagine something like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Sender
   ↓
Payment
   ↓
Recipient
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Reality looks closer to:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Sender
   ↓
Collection Rail
   ↓
Treasury Layer
   ↓
Liquidity Partner
   ↓
FX Conversion
   ↓
Settlement Layer
   ↓
Local Payout Partner
   ↓
Recipient
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Every additional country introduces more complexity:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;different currencies&lt;/li&gt;
&lt;li&gt;different banking systems&lt;/li&gt;
&lt;li&gt;different payout partners&lt;/li&gt;
&lt;li&gt;different liquidity requirements&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Now imagine operating this across more than 20 African corridors.&lt;/p&gt;

&lt;p&gt;The challenge quickly becomes operational.&lt;/p&gt;




&lt;h2&gt;
  
  
  Afriex's Challenge
&lt;/h2&gt;

&lt;p&gt;According to Utila's case study, Afriex needed the ability to support multiple stablecoins across multiple blockchain networks while settling with payout partners throughout Africa.&lt;/p&gt;

&lt;p&gt;The problem wasn't simply storing assets.&lt;/p&gt;

&lt;p&gt;It was managing:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;USDC&lt;/li&gt;
&lt;li&gt;USDT&lt;/li&gt;
&lt;li&gt;multiple blockchain networks&lt;/li&gt;
&lt;li&gt;treasury movements&lt;/li&gt;
&lt;li&gt;partner settlements&lt;/li&gt;
&lt;li&gt;growing B2B customer operations&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;all from a unified operational layer.&lt;/p&gt;

&lt;p&gt;Without consolidation, these workflows often require:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;multiple exchanges&lt;/li&gt;
&lt;li&gt;multiple wallets&lt;/li&gt;
&lt;li&gt;manual treasury processes&lt;/li&gt;
&lt;li&gt;fragmented operational visibility&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;As transaction volume grows, that model becomes increasingly difficult to manage.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why Stablecoins Matter
&lt;/h2&gt;

&lt;p&gt;When most people hear "stablecoins," they think about crypto.&lt;/p&gt;

&lt;p&gt;But infrastructure teams increasingly think about them differently.&lt;/p&gt;

&lt;p&gt;They think about settlement.&lt;/p&gt;

&lt;p&gt;Stablecoins offer something traditional payment systems often struggle to provide:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;global interoperability&lt;/li&gt;
&lt;li&gt;24/7 settlement&lt;/li&gt;
&lt;li&gt;programmable transfers&lt;/li&gt;
&lt;li&gt;asset portability across networks&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For payment companies, stablecoins are increasingly functioning as operational rails rather than speculative assets.&lt;/p&gt;

&lt;p&gt;That's a significant shift.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Infrastructure Layer
&lt;/h2&gt;

&lt;p&gt;One detail from the case study stood out.&lt;/p&gt;

&lt;p&gt;Afriex needed to support:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;any stablecoin on any chain&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;for partner settlements across African markets.&lt;/p&gt;

&lt;p&gt;That sounds simple.&lt;/p&gt;

&lt;p&gt;It isn't.&lt;/p&gt;

&lt;p&gt;Different counterparties may require:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;different assets&lt;/li&gt;
&lt;li&gt;different networks&lt;/li&gt;
&lt;li&gt;different settlement preferences&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Supporting that flexibility often introduces substantial operational complexity.&lt;/p&gt;

&lt;p&gt;According to the case study, Utila provided a single platform that enabled:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;multi-asset support&lt;/li&gt;
&lt;li&gt;multi-chain support&lt;/li&gt;
&lt;li&gt;treasury operations&lt;/li&gt;
&lt;li&gt;wallet provisioning&lt;/li&gt;
&lt;li&gt;settlement workflows&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;from one operational layer.&lt;/p&gt;

&lt;p&gt;The result was less fragmentation and greater operational control.&lt;/p&gt;




&lt;h2&gt;
  
  
  Beyond Treasury: Wallet Infrastructure
&lt;/h2&gt;

&lt;p&gt;Another interesting outcome was wallet provisioning.&lt;/p&gt;

&lt;p&gt;As Afriex expanded its B2B platform, business customers needed dedicated wallet infrastructure.&lt;/p&gt;

&lt;p&gt;Rather than treating wallets as an internal treasury tool, wallets became part of the customer-facing product experience.&lt;/p&gt;

&lt;p&gt;Businesses could receive:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;dedicated wallet addresses&lt;/li&gt;
&lt;li&gt;preferred stablecoin support&lt;/li&gt;
&lt;li&gt;preferred network support&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;while Afriex managed the infrastructure centrally.&lt;/p&gt;

&lt;p&gt;This highlights an important trend:&lt;/p&gt;

&lt;p&gt;Stablecoin infrastructure is increasingly becoming product infrastructure.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Bigger Trend
&lt;/h2&gt;

&lt;p&gt;The Afriex × Utila story reflects a broader industry movement.&lt;/p&gt;

&lt;p&gt;Stablecoins are no longer only consumer products.&lt;/p&gt;

&lt;p&gt;They are becoming:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;treasury infrastructure&lt;/li&gt;
&lt;li&gt;settlement infrastructure&lt;/li&gt;
&lt;li&gt;liquidity infrastructure&lt;/li&gt;
&lt;li&gt;payment infrastructure&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Across the payments industry, companies are increasingly evaluating stablecoins as an alternative settlement layer because of their speed, global accessibility, and operational flexibility.&lt;/p&gt;

&lt;p&gt;In many ways, stablecoins are evolving into the backend infrastructure powering modern money movement.&lt;/p&gt;

&lt;p&gt;Users may never see them.&lt;/p&gt;

&lt;p&gt;But they increasingly benefit from them.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Real Lesson
&lt;/h2&gt;

&lt;p&gt;The most interesting takeaway from the Afriex × Utila partnership isn't that a fintech adopted stablecoins.&lt;/p&gt;

&lt;p&gt;It's that operational complexity becomes the biggest challenge as payment systems scale.&lt;/p&gt;

&lt;p&gt;Building a payment product is one thing.&lt;/p&gt;

&lt;p&gt;Operating liquidity, settlements, treasury, and customer infrastructure across dozens of markets is another challenge entirely.&lt;/p&gt;

&lt;p&gt;The companies that succeed are often the ones that find ways to simplify that complexity.&lt;/p&gt;

&lt;p&gt;That's what makes this case study interesting.&lt;/p&gt;

&lt;p&gt;It's a reminder that behind every successful payment experience is an enormous amount of infrastructure working quietly in the background.&lt;/p&gt;




&lt;h2&gt;
  
  
  Final Thoughts
&lt;/h2&gt;

&lt;p&gt;Cross-border payments are often discussed from the perspective of user experience.&lt;/p&gt;

&lt;p&gt;Faster transfers.&lt;/p&gt;

&lt;p&gt;Lower fees.&lt;/p&gt;

&lt;p&gt;Better access.&lt;/p&gt;

&lt;p&gt;But infrastructure tells a different story.&lt;/p&gt;

&lt;p&gt;The real challenge is coordinating liquidity, settlements, treasury operations, and customer assets across a fragmented financial landscape.&lt;/p&gt;

&lt;p&gt;The Afriex × Utila partnership offers a glimpse into how modern payment companies are approaching that challenge.&lt;/p&gt;

&lt;p&gt;And increasingly, stablecoins are becoming part of the answer.&lt;/p&gt;

</description>
      <category>blockchain</category>
      <category>cryptocurrency</category>
      <category>infrastructure</category>
      <category>systemdesign</category>
    </item>
    <item>
      <title>What Happens When AI Agents Can Access Payment Infrastructure? Exploring OpenClaw + Afriex MCP</title>
      <dc:creator>0xSonOfUri</dc:creator>
      <pubDate>Fri, 29 May 2026 15:24:25 +0000</pubDate>
      <link>https://dev.to/afriex/what-happens-when-ai-agents-can-access-payment-infrastructure-exploring-openclaw-afriex-mcp-381e</link>
      <guid>https://dev.to/afriex/what-happens-when-ai-agents-can-access-payment-infrastructure-exploring-openclaw-afriex-mcp-381e</guid>
      <description>&lt;p&gt;For years, we've built APIs for developers.&lt;/p&gt;

&lt;p&gt;Every payment gateway, banking platform, fintech API, and infrastructure provider has been designed around a simple assumption:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;A human developer writes the code that interacts with the API.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;But what happens when AI agents become the users of those APIs?&lt;/p&gt;

&lt;p&gt;That's the question I've been thinking about while exploring OpenClaw and Afriex MCP.&lt;/p&gt;

&lt;p&gt;Not from the perspective of replacing developers.&lt;/p&gt;

&lt;p&gt;But from the perspective of enabling AI systems to interact with infrastructure in meaningful ways.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Shift From Code Generation to Infrastructure Interaction
&lt;/h2&gt;

&lt;p&gt;Most developers have already experienced AI-assisted coding.&lt;/p&gt;

&lt;p&gt;We use tools like Cursor to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;generate components&lt;/li&gt;
&lt;li&gt;write tests&lt;/li&gt;
&lt;li&gt;explain code&lt;/li&gt;
&lt;li&gt;scaffold projects&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But that's still fundamentally code generation.&lt;/p&gt;

&lt;p&gt;The AI helps create software.&lt;/p&gt;

&lt;p&gt;The developer remains the bridge between the software and the infrastructure.&lt;/p&gt;

&lt;p&gt;The next evolution is different.&lt;/p&gt;

&lt;p&gt;The AI doesn't just generate code.&lt;/p&gt;

&lt;p&gt;The AI interacts with infrastructure directly.&lt;/p&gt;




&lt;h2&gt;
  
  
  Enter OpenClaw
&lt;/h2&gt;

&lt;p&gt;OpenClaw is an open framework for building AI agents capable of interacting with tools and external systems.&lt;/p&gt;

&lt;p&gt;Instead of simply responding to prompts, agents can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;perform actions&lt;/li&gt;
&lt;li&gt;execute workflows&lt;/li&gt;
&lt;li&gt;use tools&lt;/li&gt;
&lt;li&gt;interact with services&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This transforms the AI from a conversational assistant into something much more operational.&lt;/p&gt;

&lt;p&gt;The interesting question becomes:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;What tools should these agents have access to?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;And that's where infrastructure enters the picture.&lt;/p&gt;




&lt;h2&gt;
  
  
  Enter Afriex MCP
&lt;/h2&gt;

&lt;p&gt;Afriex MCP exposes Afriex capabilities through the Model Context Protocol.&lt;/p&gt;

&lt;p&gt;This means AI-enabled tools and agents can interact with payment infrastructure through structured tooling.&lt;/p&gt;

&lt;p&gt;Instead of building everything manually first, an agent can understand and interact with financial primitives such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;balances&lt;/li&gt;
&lt;li&gt;virtual accounts&lt;/li&gt;
&lt;li&gt;transactions&lt;/li&gt;
&lt;li&gt;payment workflows&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;through MCP-enabled interfaces.&lt;/p&gt;

&lt;p&gt;On their own, OpenClaw and Afriex MCP are interesting.&lt;/p&gt;

&lt;p&gt;Together, they become much more compelling.&lt;/p&gt;




&lt;h2&gt;
  
  
  What Could an Infrastructure-Aware Agent Do?
&lt;/h2&gt;

&lt;p&gt;Imagine an AI agent with access to payment infrastructure.&lt;/p&gt;

&lt;p&gt;Not in a hypothetical science-fiction future.&lt;/p&gt;

&lt;p&gt;Today.&lt;/p&gt;




&lt;h2&gt;
  
  
  Balance Monitoring
&lt;/h2&gt;

&lt;p&gt;An agent could continuously monitor balances across accounts.&lt;/p&gt;

&lt;p&gt;When thresholds are reached, it could:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;notify teams&lt;/li&gt;
&lt;li&gt;trigger workflows&lt;/li&gt;
&lt;li&gt;generate reports&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;without manual intervention.&lt;/p&gt;




&lt;h2&gt;
  
  
  Payment Operations
&lt;/h2&gt;

&lt;p&gt;An agent could generate receiving instructions for customers.&lt;/p&gt;

&lt;p&gt;For example:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Create a virtual account for Customer X.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The agent retrieves the required information and returns payment instructions immediately.&lt;/p&gt;




&lt;h2&gt;
  
  
  Transaction Monitoring
&lt;/h2&gt;

&lt;p&gt;Instead of manually checking dashboards, agents could monitor transaction events and surface only what requires human attention.&lt;/p&gt;

&lt;p&gt;Examples:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;failed transactions&lt;/li&gt;
&lt;li&gt;delayed settlements&lt;/li&gt;
&lt;li&gt;unusual activity&lt;/li&gt;
&lt;li&gt;reconciliation issues&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Developer Workflows
&lt;/h2&gt;

&lt;p&gt;This is the area that excites me most.&lt;/p&gt;

&lt;p&gt;Imagine asking:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Generate a payment integration using Afriex.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Instead of simply generating generic code, the agent understands:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;the infrastructure&lt;/li&gt;
&lt;li&gt;available tools&lt;/li&gt;
&lt;li&gt;workflow patterns&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;and builds with real context.&lt;/p&gt;

&lt;p&gt;The difference is subtle.&lt;/p&gt;

&lt;p&gt;But significant.&lt;/p&gt;




&lt;h2&gt;
  
  
  APIs Were Built for Developers
&lt;/h2&gt;

&lt;p&gt;One idea keeps coming back to me.&lt;/p&gt;

&lt;p&gt;For decades, we've designed APIs around human developers.&lt;/p&gt;

&lt;p&gt;Documentation.&lt;br&gt;
SDKs.&lt;br&gt;
Authentication.&lt;br&gt;
Request-response patterns.&lt;/p&gt;

&lt;p&gt;Everything assumes a human sits in the middle.&lt;/p&gt;

&lt;p&gt;But MCP introduces a different model.&lt;/p&gt;

&lt;p&gt;Infrastructure becomes accessible not only to developers, but also to AI systems.&lt;/p&gt;

&lt;p&gt;That changes how we think about integrations.&lt;/p&gt;

&lt;p&gt;It changes how we think about tooling.&lt;/p&gt;

&lt;p&gt;And eventually, it may change how software gets built.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why Fintech Is Particularly Interesting
&lt;/h2&gt;

&lt;p&gt;Many industries can benefit from infrastructure-aware agents.&lt;/p&gt;

&lt;p&gt;Fintech stands out because financial workflows are already highly structured.&lt;/p&gt;

&lt;p&gt;Consider how much time teams spend:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;monitoring transactions&lt;/li&gt;
&lt;li&gt;checking balances&lt;/li&gt;
&lt;li&gt;reconciling payments&lt;/li&gt;
&lt;li&gt;handling operational workflows&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These are precisely the kinds of activities agents can assist with.&lt;/p&gt;

&lt;p&gt;Not replacing humans.&lt;/p&gt;

&lt;p&gt;Augmenting them.&lt;/p&gt;

&lt;p&gt;Making teams more efficient.&lt;/p&gt;

&lt;p&gt;Reducing operational friction.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Bigger Picture
&lt;/h2&gt;

&lt;p&gt;I don't think the most interesting outcome is:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;AI writes code faster.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I think the more interesting outcome is:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;AI understands and interacts with infrastructure.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That's a much bigger shift.&lt;/p&gt;

&lt;p&gt;Because once agents can interact with infrastructure safely and predictably, entirely new workflows become possible.&lt;/p&gt;

&lt;p&gt;OpenClaw provides the agent layer.&lt;/p&gt;

&lt;p&gt;Afriex MCP provides the infrastructure layer.&lt;/p&gt;

&lt;p&gt;Together they offer a glimpse into what AI-native financial systems might look like.&lt;/p&gt;




&lt;h2&gt;
  
  
  Final Thoughts
&lt;/h2&gt;

&lt;p&gt;We're still early.&lt;/p&gt;

&lt;p&gt;Most of these patterns are only beginning to emerge.&lt;/p&gt;

&lt;p&gt;But one thing feels increasingly clear:&lt;/p&gt;

&lt;p&gt;The future isn't just AI-assisted development.&lt;/p&gt;

&lt;p&gt;It's infrastructure-aware AI.&lt;/p&gt;

&lt;p&gt;And as developers, it's worth paying attention to what becomes possible when agents can interact with the systems we've spent years building.&lt;/p&gt;

&lt;p&gt;OpenClaw and Afriex MCP are an interesting place to start exploring that future.&lt;/p&gt;




</description>
      <category>mcp</category>
      <category>openclaw</category>
      <category>afriex</category>
      <category>fintech</category>
    </item>
    <item>
      <title>Getting Started with Afriex MCP in Cursor</title>
      <dc:creator>0xSonOfUri</dc:creator>
      <pubDate>Sat, 16 May 2026 15:17:52 +0000</pubDate>
      <link>https://dev.to/afriex/getting-started-with-afriex-mcp-in-cursor-48f6</link>
      <guid>https://dev.to/afriex/getting-started-with-afriex-mcp-in-cursor-48f6</guid>
      <description>&lt;p&gt;AI coding tools are evolving quickly.&lt;/p&gt;

&lt;p&gt;But the real shift starts when your editor can interact with infrastructure directly.&lt;/p&gt;

&lt;p&gt;Instead of only generating code, AI tools can now:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;query APIs&lt;/li&gt;
&lt;li&gt;interact with services&lt;/li&gt;
&lt;li&gt;retrieve live data&lt;/li&gt;
&lt;li&gt;execute workflows&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That’s where MCP comes in.&lt;/p&gt;

&lt;p&gt;In this guide, you’ll learn how to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;set up Afriex MCP in Cursor&lt;/li&gt;
&lt;li&gt;connect your Afriex account&lt;/li&gt;
&lt;li&gt;verify your setup&lt;/li&gt;
&lt;li&gt;understand how MCP changes the developer workflow&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is not a product demo.&lt;/p&gt;

&lt;p&gt;This is a practical setup guide for developers getting started with Afriex MCP.&lt;/p&gt;




&lt;h2&gt;
  
  
  What is MCP?
&lt;/h2&gt;

&lt;p&gt;MCP (Model Context Protocol) is a standardized way for AI tools to interact with external systems and services.&lt;/p&gt;

&lt;p&gt;Instead of treating the AI editor as:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“just a code generator”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;MCP allows it to become:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“an infrastructure-aware development environment”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;With MCP, AI tools can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;access APIs&lt;/li&gt;
&lt;li&gt;call external tools&lt;/li&gt;
&lt;li&gt;retrieve live data&lt;/li&gt;
&lt;li&gt;orchestrate workflows&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;directly from inside the editor.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why This Matters
&lt;/h2&gt;

&lt;p&gt;Normally, integrating financial infrastructure involves:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;reading documentation&lt;/li&gt;
&lt;li&gt;wiring SDKs manually&lt;/li&gt;
&lt;li&gt;testing requests&lt;/li&gt;
&lt;li&gt;switching between dashboards and terminals&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;With MCP:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;the editor gains context&lt;/li&gt;
&lt;li&gt;workflows become faster&lt;/li&gt;
&lt;li&gt;AI can assist with infrastructure interactions directly&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This creates a very different developer experience.&lt;/p&gt;




&lt;h2&gt;
  
  
  What is Afriex MCP?
&lt;/h2&gt;

&lt;p&gt;Afriex MCP exposes Afriex infrastructure capabilities to AI-enabled developer tools like Cursor.&lt;/p&gt;

&lt;p&gt;This allows Cursor to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;retrieve balances&lt;/li&gt;
&lt;li&gt;understand payment workflows&lt;/li&gt;
&lt;li&gt;scaffold integrations&lt;/li&gt;
&lt;li&gt;interact with Afriex APIs through MCP tools&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;directly from natural language prompts.&lt;/p&gt;




&lt;h2&gt;
  
  
  Prerequisites
&lt;/h2&gt;

&lt;p&gt;Before starting, you’ll need:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;An Afriex Business account&lt;/li&gt;
&lt;li&gt;Cursor installed&lt;/li&gt;
&lt;li&gt;An Afriex API key&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Useful links:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://business.afriex.com/" rel="noopener noreferrer"&gt;https://business.afriex.com/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://docs.afriex.com/" rel="noopener noreferrer"&gt;https://docs.afriex.com/&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://cursor.com/" rel="noopener noreferrer"&gt;https://cursor.com/&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Step 1 — Log Into Afriex Business
&lt;/h2&gt;

&lt;p&gt;Head to:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;https://business.afriex.com/
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Log into your Afriex Business account.&lt;/p&gt;




&lt;h2&gt;
  
  
  Step 2 — Open the Documentation
&lt;/h2&gt;

&lt;p&gt;Inside the dashboard:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Navigate to:

&lt;ul&gt;
&lt;li&gt;Developer&lt;/li&gt;
&lt;li&gt;API Documentation&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;Afriex provides detailed developer documentation including MCP setup instructions.&lt;/p&gt;




&lt;h2&gt;
  
  
  Step 3 — Open the MCP Guide
&lt;/h2&gt;

&lt;p&gt;Inside the docs:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Open:

&lt;ul&gt;
&lt;li&gt;MCP Server&lt;/li&gt;
&lt;li&gt;Connecting MCP Clients&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;This section contains:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;supported MCP clients&lt;/li&gt;
&lt;li&gt;setup instructions&lt;/li&gt;
&lt;li&gt;recommended configurations&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Step 4 — Select Cursor
&lt;/h2&gt;

&lt;p&gt;Afriex supports multiple MCP-capable tools and IDEs.&lt;/p&gt;

&lt;p&gt;In this guide, we’ll use:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Cursor&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Copy the recommended Cursor MCP configuration from the docs.&lt;/p&gt;




&lt;h2&gt;
  
  
  Step 5 — Configure Cursor
&lt;/h2&gt;

&lt;p&gt;Inside Cursor:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Open Settings&lt;/li&gt;
&lt;li&gt;Navigate to:

&lt;ul&gt;
&lt;li&gt;Tools &amp;amp; MCPs&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Click:

&lt;ul&gt;
&lt;li&gt;Add Custom MCP&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Paste the configuration you copied from the Afriex documentation.&lt;/p&gt;




&lt;h2&gt;
  
  
  Step 6 — Update Your Credentials
&lt;/h2&gt;

&lt;p&gt;Update the configuration with your credentials:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="nl"&gt;"x-afriex-api-key"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"YOUR_API_KEY"&lt;/span&gt;&lt;span class="err"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="nl"&gt;"x-afriex-environment"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"production"&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You can also use:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="nl"&gt;"x-afriex-environment"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"sandbox"&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;for testing environments if supported in your workflow.&lt;/p&gt;




&lt;h2&gt;
  
  
  Step 7 — Verify the Connection
&lt;/h2&gt;

&lt;p&gt;Now that Cursor is connected to Afriex MCP, try a simple prompt inside Cursor:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Use Afriex MCP to fetch my live balances
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If everything is configured correctly, Cursor should retrieve:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;NGN balances&lt;/li&gt;
&lt;li&gt;USD balances&lt;/li&gt;
&lt;li&gt;supported wallet balances&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;directly from Afriex.&lt;/p&gt;

&lt;p&gt;At this point, your editor is no longer operating purely as a code assistant.&lt;/p&gt;

&lt;p&gt;It can now interact with infrastructure through MCP.&lt;/p&gt;




&lt;h2&gt;
  
  
  What Makes This Interesting
&lt;/h2&gt;

&lt;p&gt;The important shift here is not:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“AI generates code.”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The interesting part is:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“AI can now interact with systems.”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That changes the workflow significantly.&lt;/p&gt;

&lt;p&gt;Instead of:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;constantly context switching&lt;/li&gt;
&lt;li&gt;manually wiring everything first&lt;/li&gt;
&lt;li&gt;navigating infrastructure alone&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;developers can now work with AI tools that understand:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;APIs&lt;/li&gt;
&lt;li&gt;infrastructure&lt;/li&gt;
&lt;li&gt;workflows&lt;/li&gt;
&lt;li&gt;integrations&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;more directly.&lt;/p&gt;




&lt;h2&gt;
  
  
  Example MCP Workflow
&lt;/h2&gt;

&lt;p&gt;Once connected, you can start using prompts like:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Fetch my Afriex balances
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Help me scaffold an Afriex integration
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Generate a Next.js API route for Afriex virtual accounts
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Create a webhook handler for Afriex payment events
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The AI editor now has context about:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;the infrastructure&lt;/li&gt;
&lt;li&gt;the available tools&lt;/li&gt;
&lt;li&gt;the integration patterns&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;which makes the development experience much smoother.&lt;/p&gt;




&lt;h2&gt;
  
  
  Security Notes
&lt;/h2&gt;

&lt;p&gt;When using MCP integrations:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;never expose your API keys publicly&lt;/li&gt;
&lt;li&gt;avoid committing credentials to Git repositories&lt;/li&gt;
&lt;li&gt;use environment variables where possible&lt;/li&gt;
&lt;li&gt;rotate keys periodically&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Treat your MCP configuration with the same care as production infrastructure credentials.&lt;/p&gt;




&lt;h2&gt;
  
  
  Where This Goes Next
&lt;/h2&gt;

&lt;p&gt;Afriex MCP opens up workflows around:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;payments&lt;/li&gt;
&lt;li&gt;virtual accounts&lt;/li&gt;
&lt;li&gt;payouts&lt;/li&gt;
&lt;li&gt;reconciliation&lt;/li&gt;
&lt;li&gt;infrastructure automation&lt;/li&gt;
&lt;li&gt;fintech developer tooling&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And this is still early.&lt;/p&gt;

&lt;p&gt;As MCP ecosystems evolve, developer tools will become increasingly:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;infrastructure-aware&lt;/li&gt;
&lt;li&gt;execution-aware&lt;/li&gt;
&lt;li&gt;workflow-aware&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Final Thoughts
&lt;/h2&gt;

&lt;p&gt;Setting up Afriex MCP inside Cursor only takes a few minutes.&lt;/p&gt;

&lt;p&gt;But the implications are much bigger.&lt;/p&gt;

&lt;p&gt;We’re moving toward a world where AI editors:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;understand infrastructure&lt;/li&gt;
&lt;li&gt;interact with APIs&lt;/li&gt;
&lt;li&gt;assist with integrations&lt;/li&gt;
&lt;li&gt;help orchestrate real systems&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;not just generate snippets.&lt;/p&gt;

&lt;p&gt;And honestly, that changes how software gets built.&lt;/p&gt;




&lt;h2&gt;
  
  
  Resources
&lt;/h2&gt;

&lt;h2&gt;
  
  
  Afriex Business
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://business.afriex.com/" rel="noopener noreferrer"&gt;https://business.afriex.com/&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Afriex Documentation
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://docs.afriex.com/" rel="noopener noreferrer"&gt;https://docs.afriex.com/&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Cursor
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://cursor.com/" rel="noopener noreferrer"&gt;https://cursor.com/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>afriex</category>
      <category>mcp</category>
      <category>fintech</category>
    </item>
    <item>
      <title>Get Paid Globally, Without a Website with Loop(Built with MeDo)</title>
      <dc:creator>0xSonOfUri</dc:creator>
      <pubDate>Wed, 06 May 2026 19:09:59 +0000</pubDate>
      <link>https://dev.to/sonofuri/get-paid-globally-without-a-website-with-loopbuilt-with-medo-3hhp</link>
      <guid>https://dev.to/sonofuri/get-paid-globally-without-a-website-with-loopbuilt-with-medo-3hhp</guid>
      <description>&lt;p&gt;Getting paid globally is still harder than it should be.&lt;/p&gt;

&lt;p&gt;If you’re a freelancer or small business owner, you often need:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;a website&lt;/li&gt;
&lt;li&gt;a payment processor&lt;/li&gt;
&lt;li&gt;multiple tools for different payment methods&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And even then, it’s fragmented.&lt;/p&gt;

&lt;p&gt;So I asked a simple question:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;What if getting paid globally was as easy as sending a link?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That’s how &lt;strong&gt;LOOP&lt;/strong&gt; was born.&lt;/p&gt;




&lt;h2&gt;
  
  
  💡 What is LOOP?
&lt;/h2&gt;

&lt;p&gt;LOOP is a simple payment tool that lets you:&lt;/p&gt;

&lt;p&gt;→ Create a payment link&lt;br&gt;
→ Share it with anyone&lt;br&gt;
→ Get paid globally&lt;/p&gt;

&lt;p&gt;No website required.&lt;/p&gt;


&lt;h2&gt;
  
  
  ⚙️ What LOOP Can Do
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Create invoices with multiple items&lt;/li&gt;
&lt;li&gt;Generate shareable payment links&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Accept payments via:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Card&lt;/li&gt;
&lt;li&gt;Bank transfer&lt;/li&gt;
&lt;li&gt;Crypto (USDT / USDC)&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Show real-time currency conversion&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Generate downloadable receipts&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Track transactions and balances&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Send and receive memos&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Get real-time notifications&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;h2&gt;
  
  
  🌍 Why This Matters
&lt;/h2&gt;

&lt;p&gt;Many people across emerging markets don’t have:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;websites&lt;/li&gt;
&lt;li&gt;payment infrastructure&lt;/li&gt;
&lt;li&gt;access to global payment systems&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;LOOP removes that barrier completely.&lt;/p&gt;

&lt;p&gt;You just:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;create → share → get paid&lt;/p&gt;
&lt;/blockquote&gt;


&lt;h2&gt;
  
  
  🛠️ How I Built It
&lt;/h2&gt;

&lt;p&gt;I built LOOP using &lt;strong&gt;MeDo&lt;/strong&gt;, an AI-powered application generation platform.&lt;/p&gt;

&lt;p&gt;Instead of manually coding everything, I focused on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;product flow&lt;/li&gt;
&lt;li&gt;user experience&lt;/li&gt;
&lt;li&gt;system design&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;
  
  
  Key pieces:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;React + Tailwind + shadcn (via MeDo)&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Modular services:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;paymentService&lt;/li&gt;
&lt;li&gt;walletService&lt;/li&gt;
&lt;li&gt;transactionService&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Dynamic payment links (&lt;code&gt;/pay/[id]&lt;/code&gt;)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Multi-payment simulation:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;card&lt;/li&gt;
&lt;li&gt;bank&lt;/li&gt;
&lt;li&gt;crypto&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;


&lt;h2&gt;
  
  
  🔌 Using Plugins (ExchangeRate)
&lt;/h2&gt;

&lt;p&gt;To make LOOP truly global, I integrated the &lt;strong&gt;ExchangeRate plugin&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;This powers:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;a currency converter widget&lt;/li&gt;
&lt;li&gt;real-time conversion inside invoices&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Example:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;$50 ≈ ₦75,000&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This helps both businesses and customers understand value instantly.&lt;/p&gt;


&lt;h2&gt;
  
  
  🧠 Key Challenges
&lt;/h2&gt;
&lt;h3&gt;
  
  
  1. Making it feel real without real payments
&lt;/h3&gt;

&lt;p&gt;I had to simulate:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;payment processing&lt;/li&gt;
&lt;li&gt;confirmations&lt;/li&gt;
&lt;li&gt;receipts&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Without using actual payment APIs.&lt;/p&gt;


&lt;h3&gt;
  
  
  2. State persistence
&lt;/h3&gt;

&lt;p&gt;Initially, everything reset on refresh.&lt;/p&gt;

&lt;p&gt;Fix:&lt;br&gt;
→ implemented local storage persistence&lt;br&gt;
→ made the app feel like a real system&lt;/p&gt;


&lt;h3&gt;
  
  
  3. UX simplicity vs feature depth
&lt;/h3&gt;

&lt;p&gt;I had to constantly balance:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;powerful features
vs&lt;/li&gt;
&lt;li&gt;a simple user flow&lt;/li&gt;
&lt;/ul&gt;


&lt;h2&gt;
  
  
  🚀 What’s Next
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Real payment integrations (bank APIs, crypto rails)&lt;/li&gt;
&lt;li&gt;Authentication &amp;amp; multi-user support&lt;/li&gt;
&lt;li&gt;Recurring payments&lt;/li&gt;
&lt;li&gt;Advanced invoicing&lt;/li&gt;
&lt;/ul&gt;


&lt;h2&gt;
  
  
  🎥 Demo
&lt;/h2&gt;

&lt;p&gt;Check out the full demo here:&lt;br&gt;
  &lt;iframe src="https://www.youtube.com/embed/0pnTQm3h2lU"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;Try the app:&lt;br&gt;
&lt;/p&gt;
&lt;div class="crayons-card c-embed text-styles text-styles--secondary"&gt;
    &lt;div class="c-embed__content"&gt;
        &lt;div class="c-embed__cover"&gt;
          &lt;a href="https://app-bd1hkbkbf7r5.appmedo.com/" class="c-link align-middle" rel="noopener noreferrer"&gt;
            &lt;img alt="" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiaoda-screenshot-img.s3cdn.medo.dev%2Fpreview_screen%2Fapp-bd1hkbkbf7r5%2Fapp-bd1hkbkbf7r5_1777968404891_0ad4.png" height="600" class="m-0" width="800"&gt;
          &lt;/a&gt;
        &lt;/div&gt;
      &lt;div class="c-embed__body"&gt;
        &lt;h2 class="fs-xl lh-tight"&gt;
          &lt;a href="https://app-bd1hkbkbf7r5.appmedo.com/" rel="noopener noreferrer" class="c-link"&gt;
            LOOP Checkout
          &lt;/a&gt;
        &lt;/h2&gt;
          
        &lt;div class="color-secondary fs-s flex items-center"&gt;
            &lt;img alt="favicon" class="c-embed__favicon m-0 mr-2 radius-0" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fmiaoda-screenshot-img.s3cdn.medo.dev%2Fpreview_screen%2Fapp-bd1hkbkbf7r5%2Fapp-bd1hkbkbf7r5_1777968404891_0ad4.png" width="800" height="600"&gt;
          app-bd1hkbkbf7r5.appmedo.com
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;





&lt;h2&gt;
  
  
  🧵 Final Thought
&lt;/h2&gt;

&lt;p&gt;Building LOOP showed me that:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Great products aren’t about complexity — they’re about removing friction.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;p&gt;Built for the MeDo Hackathon&lt;/p&gt;

&lt;h1&gt;
  
  
  BuiltWithMeDo
&lt;/h1&gt;

</description>
      <category>builtwithmedo</category>
      <category>ai</category>
      <category>nocode</category>
    </item>
    <item>
      <title>Accept USDC / USDT Without Running Your Own Wallet Infrastructure (Afriex API)</title>
      <dc:creator>0xSonOfUri</dc:creator>
      <pubDate>Mon, 20 Apr 2026 12:08:15 +0000</pubDate>
      <link>https://dev.to/afriex/accept-usdc-usdt-without-running-your-own-wallet-infrastructure-afriex-api-3ig</link>
      <guid>https://dev.to/afriex/accept-usdc-usdt-without-running-your-own-wallet-infrastructure-afriex-api-3ig</guid>
      <description>&lt;p&gt;Stablecoins are becoming core infrastructure for global payments.&lt;/p&gt;

&lt;p&gt;But building with them usually means:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;managing private keys&lt;/li&gt;
&lt;li&gt;running indexers&lt;/li&gt;
&lt;li&gt;tracking on-chain activity&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That’s a lot of overhead.&lt;/p&gt;

&lt;p&gt;In this guide, you’ll learn how to &lt;strong&gt;accept USDC / USDT without running your own custody infrastructure&lt;/strong&gt;, using the Afriex API.&lt;/p&gt;




&lt;h2&gt;
  
  
  What You’ll Build
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;A backend endpoint that returns &lt;strong&gt;deposit instructions&lt;/strong&gt; (address + network)&lt;/li&gt;
&lt;li&gt;A webhook system to &lt;strong&gt;confirm payments reliably&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;A production-ready flow using &lt;strong&gt;idempotency and retries-safe logic&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  The Mental Model
&lt;/h2&gt;

&lt;p&gt;Stop thinking:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“I need to manage wallets”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Start thinking:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“I’m building on payment rails”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;With Afriex:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You &lt;strong&gt;don’t generate private keys&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;You &lt;strong&gt;don’t run blockchain infrastructure&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;You rely on Afriex for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;deposit attribution&lt;/li&gt;
&lt;li&gt;transaction state&lt;/li&gt;
&lt;li&gt;settlement&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;Your job is to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;create a &lt;strong&gt;payment / invoice object&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;show deposit instructions&lt;/li&gt;
&lt;li&gt;confirm payments via &lt;strong&gt;webhooks&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Step 0 — Setup API Access
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Base URLs
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Sandbox: &lt;code&gt;https://sandbox.api.afriex.com&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Production: &lt;code&gt;https://api.afriex.com&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;h3&gt;
  
  
  Environment Variables
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;AFRIEX_API_BASE_URL="https://api.afriex.com"
AFRIEX_API_KEY="your-api-key"
AFRIEX_WEBHOOK_PUBLIC_KEY="your-public-key"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h3&gt;
  
  
  Example Request
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-sS&lt;/span&gt; &lt;span class="nt"&gt;-G&lt;/span&gt; &lt;span class="s2"&gt;"https://api.afriex.com/api/v1/org/balance"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"x-api-key: YOUR_AFRIEX_API_KEY"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Step 1 — Create Your Payment Object
&lt;/h2&gt;

&lt;p&gt;Afriex does not create payment links for you.&lt;/p&gt;

&lt;p&gt;You define your own &lt;strong&gt;invoice / payment intent&lt;/strong&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nl"&gt;id&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;internal_id&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="nx"&gt;reference&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;unique_reference&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="nx"&gt;asset&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;USDC&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="nx"&gt;amount&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;100&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="nx"&gt;status&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;pending&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="nx"&gt;expiresAt&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;Date&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Tip: Make &lt;code&gt;reference&lt;/code&gt; globally unique and reuse it across retries.&lt;/p&gt;




&lt;h2&gt;
  
  
  Step 2 — Get Deposit Address
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Endpoint
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight http"&gt;&lt;code&gt;&lt;span class="err"&gt;GET /api/v1/payment-method/crypto-wallet
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h3&gt;
  
  
  Example
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-sS&lt;/span&gt; &lt;span class="nt"&gt;-G&lt;/span&gt; &lt;span class="s2"&gt;"https://api.afriex.com/api/v1/payment-method/crypto-wallet"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"x-api-key: YOUR_API_KEY"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;--data-urlencode&lt;/span&gt; &lt;span class="s2"&gt;"asset=USDC"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h3&gt;
  
  
  Response
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"data"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"address"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"0x..."&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"network"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"ETHEREUM_MAINNET"&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;},&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"address"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"TY..."&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"network"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"TRON_MAINNET"&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h3&gt;
  
  
  Backend Example
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;wallet&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nf"&gt;fetch&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;url&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nf"&gt;then&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;res&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="nx"&gt;res&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;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;preferred&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt;
  &lt;span class="nx"&gt;wallet&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;data&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;find&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;w&lt;/span&gt; &lt;span class="o"&gt;=&amp;gt;&lt;/span&gt; &lt;span class="nx"&gt;w&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;network&lt;/span&gt; &lt;span class="o"&gt;===&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;ETHEREUM_MAINNET&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;??&lt;/span&gt;
  &lt;span class="nx"&gt;wallet&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;data&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;

&lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="na"&gt;address&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;preferred&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;address&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="na"&gt;network&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;preferred&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;network&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="na"&gt;asset&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;USDC&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Important Note
&lt;/h2&gt;

&lt;p&gt;This endpoint is:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Production only&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;It does not work in sandbox.&lt;/p&gt;




&lt;h2&gt;
  
  
  Step 3 — Display Payment Instructions
&lt;/h2&gt;

&lt;p&gt;Your UI should show:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Asset (USDC / USDT)&lt;/li&gt;
&lt;li&gt;Network&lt;/li&gt;
&lt;li&gt;Address (copy + QR)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Also include:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Sending on the wrong network may result in lost funds&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  Step 4 — Confirm Payments (Webhooks)
&lt;/h2&gt;

&lt;p&gt;This is the most important part.&lt;/p&gt;

&lt;p&gt;Do NOT:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;rely on user confirmation&lt;/li&gt;
&lt;li&gt;rely on block explorers&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Use &lt;strong&gt;Afriex webhooks&lt;/strong&gt;.&lt;/p&gt;




&lt;h3&gt;
  
  
  Webhook Setup
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Configure your webhook URL in the dashboard&lt;/li&gt;
&lt;li&gt;Copy your webhook public key&lt;/li&gt;
&lt;li&gt;Allowlist Afriex IPs&lt;/li&gt;
&lt;/ul&gt;




&lt;h3&gt;
  
  
  Signature Verification
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="nx"&gt;crypto&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;crypto&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;

&lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;verifySignature&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;signature&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;rawBody&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;publicKey&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;verifier&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;crypto&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;createVerify&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;RSA-SHA256&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
  &lt;span class="nx"&gt;verifier&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;update&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;rawBody&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
  &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="nx"&gt;verifier&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;verify&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;publicKey&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;signature&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;base64&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Important: verify the &lt;strong&gt;raw request body&lt;/strong&gt;, not parsed JSON.&lt;/p&gt;




&lt;h3&gt;
  
  
  Events
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;code&gt;TRANSACTION.CREATED&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;TRANSACTION.UPDATED&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;h3&gt;
  
  
  Logic
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="k"&gt;if &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;event&lt;/span&gt; &lt;span class="o"&gt;===&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;TRANSACTION.UPDATED&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nx"&gt;status&lt;/span&gt; &lt;span class="o"&gt;===&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;SUCCESS&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="nf"&gt;markInvoiceAsPaid&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Ensure this operation is idempotent.&lt;/p&gt;




&lt;h2&gt;
  
  
  Step 5 — Idempotency
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Outbound
&lt;/h3&gt;

&lt;p&gt;Use:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"meta"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"reference"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"invoice_123"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"idempotencyKey"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"idem_invoice_123"&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h3&gt;
  
  
  Inbound
&lt;/h3&gt;

&lt;p&gt;Webhooks may retry.&lt;/p&gt;

&lt;p&gt;Ensure:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;no duplicate credits&lt;/li&gt;
&lt;li&gt;safe re-processing&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Use database constraints or “update-if-not-paid” logic.&lt;/p&gt;




&lt;h2&gt;
  
  
  Step 6 — Reconciliation
&lt;/h2&gt;

&lt;p&gt;Use Afriex APIs for support and debugging:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Get transaction&lt;/li&gt;
&lt;li&gt;List transactions&lt;/li&gt;
&lt;li&gt;Get balance&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  ⚠️ Common Pitfalls
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Crypto Wallet Not Working in Dev
&lt;/h3&gt;

&lt;p&gt;→ It’s production only&lt;/p&gt;




&lt;h3&gt;
  
  
  2. Wrong Network Deposits
&lt;/h3&gt;

&lt;p&gt;→ Only present one supported network&lt;/p&gt;




&lt;h3&gt;
  
  
  3. Webhook Verification Fails
&lt;/h3&gt;

&lt;p&gt;→ Use raw body + correct public key&lt;/p&gt;




&lt;h3&gt;
  
  
  4. Duplicate Credits
&lt;/h3&gt;

&lt;p&gt;→ Fix with idempotency&lt;/p&gt;




&lt;h2&gt;
  
  
  Why This Matters
&lt;/h2&gt;

&lt;p&gt;Stablecoins are becoming:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Core rails for global payments&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The real opportunity isn’t just using them.&lt;/p&gt;

&lt;p&gt;It’s building systems on top of them.&lt;/p&gt;




&lt;h2&gt;
  
  
  Summary
&lt;/h2&gt;

&lt;p&gt;With Afriex, you can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Accept USDC / USDT&lt;/li&gt;
&lt;li&gt;Avoid custody complexity&lt;/li&gt;
&lt;li&gt;Use webhooks for reliable confirmation&lt;/li&gt;
&lt;li&gt;Build production-ready payment systems&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Final Thought
&lt;/h2&gt;

&lt;p&gt;Afriex gives you the rails.&lt;/p&gt;

&lt;p&gt;You build the product.&lt;/p&gt;




</description>
      <category>fintech</category>
      <category>stablecoins</category>
      <category>blockchain</category>
      <category>web3</category>
    </item>
    <item>
      <title>Getting Started with the Afriex API: From Signup to Your First Request</title>
      <dc:creator>0xSonOfUri</dc:creator>
      <pubDate>Tue, 07 Apr 2026 12:00:48 +0000</pubDate>
      <link>https://dev.to/afriex/getting-started-with-the-afriex-api-from-signup-to-your-first-request-bjk</link>
      <guid>https://dev.to/afriex/getting-started-with-the-afriex-api-from-signup-to-your-first-request-bjk</guid>
      <description>&lt;p&gt;What if you could start building global payment systems in minutes?&lt;/p&gt;

&lt;p&gt;Before you can build payment links, payouts, or crypto flows — you need access to the Afriex API.&lt;/p&gt;

&lt;p&gt;This guide walks you through going from &lt;strong&gt;zero → your first API call&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  What You’ll Do
&lt;/h2&gt;

&lt;p&gt;By the end of this guide, you’ll:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Create an Afriex Business account&lt;/li&gt;
&lt;li&gt;Complete onboarding and verification&lt;/li&gt;
&lt;li&gt;Generate your API key&lt;/li&gt;
&lt;li&gt;Make your first API request&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Step 1: Create an Afriex Business Account
&lt;/h2&gt;

&lt;p&gt;Head to:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://business.afriex.com/" rel="noopener noreferrer"&gt;https://business.afriex.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Sign up using your &lt;strong&gt;business email&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  Step 2: Select Entity Type
&lt;/h2&gt;

&lt;p&gt;Choose the entity that applies to you:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Sole Trader / Sole Proprietorship&lt;/strong&gt; → if you're an individual&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Registered Company / Corporate&lt;/strong&gt; → if you're a company&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This determines the documents required during verification.&lt;/p&gt;




&lt;h2&gt;
  
  
  Step 3: Set Up Your Business
&lt;/h2&gt;

&lt;p&gt;Fill in your details:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Phone number&lt;/li&gt;
&lt;li&gt;Full name&lt;/li&gt;
&lt;li&gt;Business name&lt;/li&gt;
&lt;li&gt;Country of residence&lt;/li&gt;
&lt;li&gt;Password&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Step 4: Complete Verification
&lt;/h2&gt;

&lt;p&gt;To unlock full API access, you’ll go through verification:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Provide company details&lt;/li&gt;
&lt;li&gt;Upload documents&lt;/li&gt;
&lt;li&gt;Add associated parties&lt;/li&gt;
&lt;li&gt;Complete phone verification&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This is required for compliance and security.&lt;/p&gt;




&lt;h2&gt;
  
  
  Step 5: Set Up Your Team (Optional)
&lt;/h2&gt;

&lt;p&gt;From the dashboard, you can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Add team members&lt;/li&gt;
&lt;li&gt;Assign roles&lt;/li&gt;
&lt;li&gt;Manage permissions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Useful if you're building with others.&lt;/p&gt;




&lt;h2&gt;
  
  
  Step 6: Generate Your API Key
&lt;/h2&gt;

&lt;p&gt;Once your account is ready:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Go to &lt;strong&gt;Settings → API Keys&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Generate a new key&lt;/li&gt;
&lt;li&gt;Store it securely&lt;/li&gt;
&lt;/ol&gt;

&lt;blockquote&gt;
&lt;p&gt;Never expose your API key in frontend code or public repositories.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  Step 7: Make Your First API Call
&lt;/h2&gt;

&lt;p&gt;Now let’s test the API.&lt;/p&gt;

&lt;h3&gt;
  
  
  Create a Customer
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-X&lt;/span&gt; POST https://sandbox.api.afriex.com/api/v1/customer &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Content-Type: application/json"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"x-api-key: YOUR_API_KEY"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-d&lt;/span&gt; &lt;span class="s1"&gt;'{
    "fullName": "John Doe",
    "email": "john.doe@example.com",
    "phone": "+2348192837465",
    "countryCode": "NG"
  }'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h3&gt;
  
  
  Expected Response
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"data"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"customerId"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"69516dd0464b2213bd74cfad"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"fullName"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"John Doe"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"email"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"john.doe@example.com"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"phone"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"+2348192837465"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"countryCode"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"NG"&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Step 8: Process Your First Transaction
&lt;/h2&gt;

&lt;p&gt;Once you have a customer, you can initiate a transaction:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-X&lt;/span&gt; POST https://sandbox.api.afriex.com/api/v1/transaction &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Content-Type: application/json"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"x-api-key: YOUR_API_KEY"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-d&lt;/span&gt; &lt;span class="s1"&gt;'{
    "customerId": "CUSTOMER_ID",
    "type": "WITHDRAW",
    "sourceAmount": "10",
    "destinationAmount": 5000,
    "sourceCurrency": "USD",
    "destinationCurrency": "NGN",
    "destinationId": "PAYMENT_METHOD_ID"
  }'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Important Notes
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Use the &lt;strong&gt;sandbox environment&lt;/strong&gt; for testing&lt;/li&gt;
&lt;li&gt;Switch to &lt;code&gt;https://api.afriex.com&lt;/code&gt; for production&lt;/li&gt;
&lt;li&gt;Keep your API key secure&lt;/li&gt;
&lt;li&gt;Always make API calls from your backend&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Explore the Docs
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://docs.afriex.com/" rel="noopener noreferrer"&gt;https://docs.afriex.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You can also fetch the full index here:&lt;br&gt;
&lt;a href="https://docs.afriex.com/llms.txt" rel="noopener noreferrer"&gt;https://docs.afriex.com/llms.txt&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  What Next?
&lt;/h2&gt;

&lt;p&gt;Now that you have access, you can start building:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Payment links&lt;/li&gt;
&lt;li&gt;Cross-border payouts&lt;/li&gt;
&lt;li&gt;Crypto integrations&lt;/li&gt;
&lt;li&gt;Multi-currency systems&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Next guide: &lt;em&gt;Send a Link, Get Paid: Building Payment Links with the Afriex API&lt;/em&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Final Thought
&lt;/h2&gt;

&lt;p&gt;Afriex gives you the rails.&lt;/p&gt;

&lt;p&gt;You just made your first step into building on top of them.&lt;/p&gt;




</description>
      <category>fintech</category>
      <category>api</category>
      <category>webdev</category>
      <category>programming</category>
    </item>
    <item>
      <title>Send a Link, Get Paid: Building Payment Links with Afriex</title>
      <dc:creator>0xSonOfUri</dc:creator>
      <pubDate>Mon, 30 Mar 2026 17:45:56 +0000</pubDate>
      <link>https://dev.to/afriex/send-a-link-get-paid-building-payment-links-with-afriex-13ak</link>
      <guid>https://dev.to/afriex/send-a-link-get-paid-building-payment-links-with-afriex-13ak</guid>
      <description>&lt;h2&gt;
  
  
  Send a Link, Get Paid: Building Payment Links with the Afriex API
&lt;/h2&gt;

&lt;p&gt;What if you could accept payments globally with just a link?&lt;/p&gt;

&lt;p&gt;No checkout flows. No heavy integrations. Just a URL.&lt;/p&gt;




&lt;h2&gt;
  
  
  What This Guide Covers
&lt;/h2&gt;

&lt;p&gt;This guide is &lt;strong&gt;about the Afriex API&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;You’ll learn how to build a simple payment link system that allows you to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Generate shareable payment links&lt;/li&gt;
&lt;li&gt;Accept payments via bank transfer or crypto&lt;/li&gt;
&lt;li&gt;Track payment status&lt;/li&gt;
&lt;li&gt;Handle real payment confirmations&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You do not need any specific framework. Your backend just needs to make &lt;strong&gt;secure HTTPS requests&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  Afriex vs Your Application
&lt;/h2&gt;

&lt;p&gt;Afriex provides the &lt;strong&gt;payment infrastructure&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;You build the &lt;strong&gt;product layer&lt;/strong&gt;.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Responsibility&lt;/th&gt;
&lt;th&gt;Who&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Virtual accounts, crypto wallets, settlement rails&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Afriex&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Payment link (URL), amount, expiry, status tracking&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Your App&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Confirming payments securely&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Afriex Webhooks&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  System Architecture
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Client → Backend → Afriex API → Payment Rails
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Your backend stores payment requests&lt;/li&gt;
&lt;li&gt;Afriex handles payment execution&lt;/li&gt;
&lt;li&gt;Your frontend displays payment instructions&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Prerequisites
&lt;/h2&gt;

&lt;p&gt;Before starting, you need:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;An &lt;strong&gt;Afriex account&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Your &lt;strong&gt;API key&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;A &lt;strong&gt;customerId&lt;/strong&gt; (Afriex identifier for the recipient)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Every payment instruction you generate should be tied to a &lt;strong&gt;customerId&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  Authentication
&lt;/h2&gt;

&lt;p&gt;All Afriex API calls are made server-side.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight http"&gt;&lt;code&gt;&lt;span class="nf"&gt;GET&lt;/span&gt; &lt;span class="nn"&gt;{BASE_URL}/...&lt;/span&gt; &lt;span class="k"&gt;HTTP&lt;/span&gt;&lt;span class="o"&gt;/&lt;/span&gt;&lt;span class="m"&gt;1.1&lt;/span&gt;
&lt;span class="na"&gt;x-api-key&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="s"&gt;YOUR_AFRIEX_API_KEY&lt;/span&gt;
&lt;span class="na"&gt;Content-Type&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="s"&gt;application/json&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-sS&lt;/span&gt; &lt;span class="nt"&gt;-G&lt;/span&gt; &lt;span class="s2"&gt;"{BASE_URL}/api/v1/payment-method/virtual-account"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"x-api-key: YOUR_AFRIEX_API_KEY"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;--data-urlencode&lt;/span&gt; &lt;span class="s2"&gt;"currency=NGN"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;--data-urlencode&lt;/span&gt; &lt;span class="s2"&gt;"amount=5000"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;--data-urlencode&lt;/span&gt; &lt;span class="s2"&gt;"customerId=PAYEE_CUSTOMER_ID"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Step 1: Create a Payment Link (Your Backend)
&lt;/h2&gt;

&lt;p&gt;Afriex does not create “payment links” for you — you implement this.&lt;/p&gt;

&lt;p&gt;Store:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;amount&lt;/li&gt;
&lt;li&gt;currency&lt;/li&gt;
&lt;li&gt;description&lt;/li&gt;
&lt;li&gt;expiry&lt;/li&gt;
&lt;li&gt;customerId&lt;/li&gt;
&lt;li&gt;unique token
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="k"&gt;import&lt;/span&gt; &lt;span class="nx"&gt;crypto&lt;/span&gt; &lt;span class="k"&gt;from&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;crypto&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;

&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;linkId&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;crypto&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;randomBytes&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;16&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nf"&gt;toString&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;hex&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;

&lt;span class="k"&gt;await&lt;/span&gt; &lt;span class="nx"&gt;db&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;payment&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;create&lt;/span&gt;&lt;span class="p"&gt;({&lt;/span&gt;
  &lt;span class="nx"&gt;linkId&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="na"&gt;amount&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;5000&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="na"&gt;currency&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;NGN&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="nx"&gt;customerId&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="na"&gt;expiresAt&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="k"&gt;new&lt;/span&gt; &lt;span class="nc"&gt;Date&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;Date&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;now&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="mi"&gt;30&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="mi"&gt;60&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="mi"&gt;1000&lt;/span&gt;&lt;span class="p"&gt;),&lt;/span&gt;
&lt;span class="p"&gt;});&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then generate:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;https://yourapp.com/pay/{linkId}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Step 2: Generate Payment Instructions
&lt;/h2&gt;

&lt;p&gt;When a user opens the link:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Load the payment request&lt;/li&gt;
&lt;li&gt;Call Afriex&lt;/li&gt;
&lt;li&gt;Return instructions&lt;/li&gt;
&lt;/ol&gt;




&lt;h3&gt;
  
  
  🇳🇬 Virtual Account (Bank Transfer)
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-sS&lt;/span&gt; &lt;span class="nt"&gt;-G&lt;/span&gt; &lt;span class="s2"&gt;"{BASE_URL}/api/v1/payment-method/virtual-account"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"x-api-key: YOUR_AFRIEX_API_KEY"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;--data-urlencode&lt;/span&gt; &lt;span class="s2"&gt;"currency=NGN"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;--data-urlencode&lt;/span&gt; &lt;span class="s2"&gt;"amount=5000"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;--data-urlencode&lt;/span&gt; &lt;span class="s2"&gt;"customerId=PAYEE_CUSTOMER_ID"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Display:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Account number&lt;/li&gt;
&lt;li&gt;Account name&lt;/li&gt;
&lt;li&gt;Bank name&lt;/li&gt;
&lt;/ul&gt;




&lt;h3&gt;
  
  
  Crypto Wallet (USDC / USDT)
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-sS&lt;/span&gt; &lt;span class="nt"&gt;-G&lt;/span&gt; &lt;span class="s2"&gt;"{BASE_URL}/api/v1/payment-method/crypto-wallet"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"x-api-key: YOUR_AFRIEX_API_KEY"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;--data-urlencode&lt;/span&gt; &lt;span class="s2"&gt;"asset=USDC"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;--data-urlencode&lt;/span&gt; &lt;span class="s2"&gt;"customerId=PAYEE_CUSTOMER_ID"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Response:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"data"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"address"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"0x..."&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"network"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"ethereum"&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If USDC is unavailable, fallback to USDT.&lt;/p&gt;




&lt;h2&gt;
  
  
  Step 3: Choosing Payment Method
&lt;/h2&gt;

&lt;p&gt;In your backend:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;If currency = NGN → virtual account&lt;/li&gt;
&lt;li&gt;If currency = USD → crypto wallet&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This logic is controlled by &lt;strong&gt;your application&lt;/strong&gt;, not Afriex.&lt;/p&gt;




&lt;h2&gt;
  
  
  Step 4: Confirm Payment (Production)
&lt;/h2&gt;

&lt;p&gt;Do NOT rely on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Button clicks&lt;/li&gt;
&lt;li&gt;User confirmation&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Use &lt;strong&gt;Afriex webhooks&lt;/strong&gt;:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Receive event&lt;/li&gt;
&lt;li&gt;Verify signature&lt;/li&gt;
&lt;li&gt;Match to payment record&lt;/li&gt;
&lt;li&gt;Mark as paid&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Always handle this &lt;strong&gt;idempotently&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  Security Checklist
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Keep API keys server-side only&lt;/li&gt;
&lt;li&gt;Use HTTPS&lt;/li&gt;
&lt;li&gt;Use unguessable link tokens&lt;/li&gt;
&lt;li&gt;Expire links&lt;/li&gt;
&lt;li&gt;Verify webhooks&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Why This Pattern Matters
&lt;/h2&gt;

&lt;p&gt;This is the same pattern used by:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Stripe&lt;/li&gt;
&lt;li&gt;Paystack&lt;/li&gt;
&lt;li&gt;Flutterwave&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Payment links are one of the &lt;strong&gt;fastest ways to start accepting payments globally&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  Summary
&lt;/h2&gt;

&lt;p&gt;To build payment links with Afriex:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Create a customer → get &lt;code&gt;customerId&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Store a payment request in your database&lt;/li&gt;
&lt;li&gt;Generate a shareable link&lt;/li&gt;
&lt;li&gt;Fetch payment instructions via Afriex&lt;/li&gt;
&lt;li&gt;Confirm payments via webhooks&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  Next Steps
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Add webhook automation&lt;/li&gt;
&lt;li&gt;Support more currencies&lt;/li&gt;
&lt;li&gt;Build dashboards&lt;/li&gt;
&lt;li&gt;Add notifications&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Final Note
&lt;/h2&gt;

&lt;p&gt;Afriex gives you the rails.&lt;/p&gt;

&lt;p&gt;You build the product.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>api</category>
      <category>fintech</category>
    </item>
  </channel>
</rss>
