<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet type="text/xsl" href="atom.xsl"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <id>https://developers.nextpay.world/changelog</id>
    <title>NextPay Blog</title>
    <updated>2026-03-12T00:00:00.000Z</updated>
    <generator>https://github.com/jpmonette/feed</generator>
    <link rel="alternate" href="https://developers.nextpay.world/changelog"/>
    <subtitle>NextPay Blog</subtitle>
    <icon>https://developers.nextpay.world/img/favicon.ico</icon>
    <entry>
        <title type="html"><![CDATA[v2.0.0 - New API, New Documentation]]></title>
        <id>https://developers.nextpay.world/changelog/2026/03/12/nextapi-v2</id>
        <link href="https://developers.nextpay.world/changelog/2026/03/12/nextapi-v2"/>
        <updated>2026-03-12T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[Release Date: March 12, 2026]]></summary>
        <content type="html"><![CDATA[<p><strong>Release Date:</strong> March 12, 2026
<strong>Type:</strong> Major Release</p>
<p>NextAPI v2 is a full rebuild of both the API and the developer documentation. This release ships a new base URL, a new auth model, a comprehensive content suite covering every integration pattern, and an interactive API reference with 36 documented endpoints.</p>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="what-changed-in-the-api">What changed in the API<a href="https://developers.nextpay.world/changelog/2026/03/12/nextapi-v2#what-changed-in-the-api" class="hash-link" aria-label="Direct link to What changed in the API" title="Direct link to What changed in the API" translate="no">​</a></h2>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="new-base-url">New base URL<a href="https://developers.nextpay.world/changelog/2026/03/12/nextapi-v2#new-base-url" class="hash-link" aria-label="Direct link to New base URL" title="Direct link to New base URL" translate="no">​</a></h3>
<div class="language-text codeBlockContainer_Ckt0 theme-code-block" style="--prism-color:#393A34;--prism-background-color:#f6f8fa"><div class="codeBlockContent_QJqH"><pre tabindex="0" class="prism-code language-text codeBlock_bY9V thin-scrollbar" style="color:#393A34;background-color:#f6f8fa"><code class="codeBlockLines_e6Vv"><span class="token-line" style="color:#393A34"><span class="token plain">https://api.partners.nextpay.world/v2/</span><br></span></code></pre></div></div>
<p>All v2 endpoints live under this URL. The v1 base URL (<code>https://api.nextapi.com/v1/</code>) is deprecated and will reach end-of-life — migrate to v2 before that date. See your partner agreement for the timeline.</p>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="auth-model-basic-auth">Auth model: Basic Auth<a href="https://developers.nextpay.world/changelog/2026/03/12/nextapi-v2#auth-model-basic-auth" class="hash-link" aria-label="Direct link to Auth model: Basic Auth" title="Direct link to Auth model: Basic Auth" translate="no">​</a></h3>
<p>v2 uses <strong>Basic Auth</strong> throughout — your Client ID and Client Secret, Base64-encoded in the <code>Authorization</code> header:</p>
<div class="language-bash codeBlockContainer_Ckt0 theme-code-block" style="--prism-color:#393A34;--prism-background-color:#f6f8fa"><div class="codeBlockContent_QJqH"><pre tabindex="0" class="prism-code language-bash codeBlock_bY9V thin-scrollbar" style="color:#393A34;background-color:#f6f8fa"><code class="codeBlockLines_e6Vv"><span class="token-line" style="color:#393A34"><span class="token function" style="color:#d73a49">curl</span><span class="token plain"> </span><span class="token parameter variable" style="color:#36acaa">-u</span><span class="token plain"> </span><span class="token string" style="color:#e3116c">"YOUR_CLIENT_ID:YOUR_CLIENT_SECRET"</span><span class="token plain"> </span><span class="token punctuation" style="color:#393A34">\</span><span class="token plain"></span><br></span><span class="token-line" style="color:#393A34"><span class="token plain">  https://api.partners.nextpay.world/v2/merchants</span><br></span></code></pre></div></div>
<p>v1 used Bearer token auth. Any code using <code>Authorization: Bearer ...</code> must be updated.</p>
<p>→ See <a class="" href="https://developers.nextpay.world/docs/concepts/authentication">Authentication</a> for the full header construction guide.</p>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="new-endpoints-in-v2">New endpoints in v2<a href="https://developers.nextpay.world/changelog/2026/03/12/nextapi-v2#new-endpoints-in-v2" class="hash-link" aria-label="Direct link to New endpoints in v2" title="Direct link to New endpoints in v2" translate="no">​</a></h3>
<table><thead><tr><th>Category</th><th>New in v2</th></tr></thead><tbody><tr><td>Money In</td><td>Payment Intents (dynamic QR), Funding Methods (static QR)</td></tr><tr><td>Money Out</td><td>Batch payout requests (<code>POST /v2/payout-requests/batch</code>)</td></tr><tr><td>Platform</td><td>Internal account transfers (<code>POST /v2/accounts/{id}/transfer</code>)</td></tr><tr><td>Integration</td><td>Webhook management (<code>POST /v2/webhooks</code>, signature verification)</td></tr><tr><td>Utilities</td><td>Service health (<code>GET /v2/service-health</code>), receiving institutions</td></tr></tbody></table>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="multi-provider-routing">Multi-provider routing<a href="https://developers.nextpay.world/changelog/2026/03/12/nextapi-v2#multi-provider-routing" class="hash-link" aria-label="Direct link to Multi-provider routing" title="Direct link to Multi-provider routing" translate="no">​</a></h3>
<p>v2 routes transactions across multiple financial providers automatically — currently 3 partner institutions, with more being added as the network grows. Your integration calls the same endpoints regardless of which provider handles the transaction — routing is transparent. The multi-provider architecture means better redundancy, competitive costs, and no single point of failure. Factors include cost, provider reliability, and partner-specific configuration.</p>
<p>→ See <a class="" href="https://developers.nextpay.world/docs/concepts/multi-provider-routing">Multi-Provider Routing</a></p>
<hr>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="whats-new-in-the-documentation">What's new in the documentation<a href="https://developers.nextpay.world/changelog/2026/03/12/nextapi-v2#whats-new-in-the-documentation" class="hash-link" aria-label="Direct link to What's new in the documentation" title="Direct link to What's new in the documentation" translate="no">​</a></h2>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="interactive-api-reference">Interactive API Reference<a href="https://developers.nextpay.world/changelog/2026/03/12/nextapi-v2#interactive-api-reference" class="hash-link" aria-label="Direct link to Interactive API Reference" title="Direct link to Interactive API Reference" translate="no">​</a></h3>
<p>36 endpoints — fully documented with request schemas, response examples, and a live <strong>Try It</strong> panel. Test against the sandbox directly from the browser without leaving the docs.</p>
<p>→ <a class="" href="https://developers.nextpay.world/docs/api-reference/nextpay-partners-api-v-2">Browse the API Reference</a></p>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="tutorials-first-api-call-in-under-5-minutes">Tutorials: first API call in under 5 minutes<a href="https://developers.nextpay.world/changelog/2026/03/12/nextapi-v2#tutorials-first-api-call-in-under-5-minutes" class="hash-link" aria-label="Direct link to Tutorials: first API call in under 5 minutes" title="Direct link to Tutorials: first API call in under 5 minutes" translate="no">​</a></h3>
<p>Four getting-started tutorials cover the core flows end-to-end:</p>
<ul>
<li class=""><a class="" href="https://developers.nextpay.world/docs/tutorials/getting-started/your-first-api-call">Your First API Call</a> — auth, list merchants, make a payout, check status</li>
<li class=""><a class="" href="https://developers.nextpay.world/docs/tutorials/getting-started/your-first-payout">Your First Payout</a> — balance check → payout → lifecycle</li>
<li class=""><a class="" href="https://developers.nextpay.world/docs/tutorials/getting-started/your-first-collection">Your First Collection</a> — Payment Intent → QR display → webhook confirmation</li>
<li class=""><a class="" href="https://developers.nextpay.world/docs/tutorials/getting-started/your-first-sub-merchant">Your First Sub-Merchant</a> — merchant + account creation, full onboarding function</li>
</ul>
<p>Two advanced tutorials for complete platform builds:</p>
<ul>
<li class=""><a class="" href="https://developers.nextpay.world/docs/tutorials/advanced/build-e-commerce-checkout">Build an E-Commerce Checkout</a></li>
<li class=""><a class="" href="https://developers.nextpay.world/docs/tutorials/advanced/build-saas-with-wallets">Build a SaaS Platform with Wallets</a></li>
</ul>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="how-to-guides">How-to Guides<a href="https://developers.nextpay.world/changelog/2026/03/12/nextapi-v2#how-to-guides" class="hash-link" aria-label="Direct link to How-to Guides" title="Direct link to How-to Guides" translate="no">​</a></h3>
<p>Task-oriented guides for every common integration scenario:</p>
<p><strong>Money In:</strong> <a class="" href="https://developers.nextpay.world/docs/guides/money-in/accept-qrph-payment">Accept QRPH Payment</a>, <a class="" href="https://developers.nextpay.world/docs/guides/money-in/setup-virtual-collection">Setup Virtual Collection</a>, <a class="" href="https://developers.nextpay.world/docs/guides/money-in/create-payment-intent">Create Payment Intent</a></p>
<p><strong>Money Out:</strong> <a class="" href="https://developers.nextpay.world/docs/guides/money-out/send-a-single-payout">Send a Single Payout</a>, <a class="" href="https://developers.nextpay.world/docs/guides/money-out/run-mass-payroll">Run Mass Payroll</a>, <a class="" href="https://developers.nextpay.world/docs/guides/money-out/handle-payout-failures">Handle Payout Failures</a>, <a class="" href="https://developers.nextpay.world/docs/guides/money-out/get-payout-receipt">Get Payout Receipt</a></p>
<p><strong>Platform:</strong> <a class="" href="https://developers.nextpay.world/docs/guides/platform/transfer-between-accounts">Transfer Between Accounts</a>, <a class="" href="https://developers.nextpay.world/docs/guides/platform/take-commission-from-sales">Take a Commission from Sales</a>, <a class="" href="https://developers.nextpay.world/docs/guides/platform/create-sub-merchant-wallets">Create Sub-Merchant Wallets</a></p>
<p><strong>Integration:</strong> <a class="" href="https://developers.nextpay.world/docs/guides/integration/setup-webhooks">Setup Webhooks</a>, <a class="" href="https://developers.nextpay.world/docs/guides/integration/verify-webhook-signatures">Verify Webhook Signatures</a>, <a class="" href="https://developers.nextpay.world/docs/guides/integration/reconcile-transactions">Reconcile Transactions</a>, <a class="" href="https://developers.nextpay.world/docs/guides/integration/handle-errors-and-retries">Handle Errors and Retries</a></p>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="concepts">Concepts<a href="https://developers.nextpay.world/changelog/2026/03/12/nextapi-v2#concepts" class="hash-link" aria-label="Direct link to Concepts" title="Direct link to Concepts" translate="no">​</a></h3>
<p>14 explanation pages covering the system and its design decisions:</p>
<p><a class="" href="https://developers.nextpay.world/docs/concepts/overview">Overview</a>, <a class="" href="https://developers.nextpay.world/docs/concepts/architecture">Architecture</a>, <a class="" href="https://developers.nextpay.world/docs/concepts/authentication">Authentication</a>, <a class="" href="https://developers.nextpay.world/docs/concepts/wallet-structure">Wallet Structure</a>, <a class="" href="https://developers.nextpay.world/docs/concepts/payout-lifecycle">Payout Lifecycle</a>, <a class="" href="https://developers.nextpay.world/docs/concepts/collections-lifecycle">Collections Lifecycle</a>, <a class="" href="https://developers.nextpay.world/docs/concepts/disbursement-channels">Disbursement Channels</a>, <a class="" href="https://developers.nextpay.world/docs/concepts/multi-provider-routing">Multi-Provider Routing</a>, <a class="" href="https://developers.nextpay.world/docs/concepts/webhooks">Webhooks</a>, <a class="" href="https://developers.nextpay.world/docs/concepts/ids-and-idempotency">IDs &amp; Idempotency</a>, <a class="" href="https://developers.nextpay.world/docs/concepts/errors">Errors</a>, <a class="" href="https://developers.nextpay.world/docs/concepts/security-and-compliance">Security &amp; Compliance</a>, <a class="" href="https://developers.nextpay.world/docs/concepts/sandbox-vs-production">Sandbox vs Production</a>, <a class="" href="https://developers.nextpay.world/docs/concepts/versioning">Versioning</a></p>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="use-cases">Use Cases<a href="https://developers.nextpay.world/changelog/2026/03/12/nextapi-v2#use-cases" class="hash-link" aria-label="Direct link to Use Cases" title="Direct link to Use Cases" translate="no">​</a></h3>
<p>Five industry landing pages for common integration archetypes — useful if you're evaluating whether NextAPI fits your platform before reading technical docs:</p>
<p><a class="" href="https://developers.nextpay.world/docs/use-cases/payment-gateway">Payment Gateway &amp; Beyond</a>, <a class="" href="https://developers.nextpay.world/docs/use-cases/merchant-saas">Merchant SaaS Platforms</a>, <a class="" href="https://developers.nextpay.world/docs/use-cases/physical-networks">Physical Network Payments</a>, <a class="" href="https://developers.nextpay.world/docs/use-cases/payroll">Payroll &amp; Bulk Disbursement</a>, <a class="" href="https://developers.nextpay.world/docs/use-cases/subscription">Subscription &amp; Billing Platforms</a>, <a class="" href="https://developers.nextpay.world/docs/use-cases/gig-marketplace">Gig &amp; Marketplace Payouts</a></p>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="full-text-search">Full-text search<a href="https://developers.nextpay.world/changelog/2026/03/12/nextapi-v2#full-text-search" class="hash-link" aria-label="Direct link to Full-text search" title="Direct link to Full-text search" translate="no">​</a></h3>
<p>Search is now available across all docs, guides, concepts, and the API reference. The index is rebuilt on every deploy.</p>
<hr>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="migration-from-v1">Migration from v1<a href="https://developers.nextpay.world/changelog/2026/03/12/nextapi-v2#migration-from-v1" class="hash-link" aria-label="Direct link to Migration from v1" title="Direct link to Migration from v1" translate="no">​</a></h2>
<p>If you are currently integrated against v1, the minimum changes required to migrate:</p>
<ol>
<li class=""><strong>Update base URL</strong> — replace <code>https://api.nextapi.com/v1/</code> with <code>https://api.partners.nextpay.world/v2/</code></li>
<li class=""><strong>Update auth</strong> — replace Bearer token with Basic Auth (<code>-u "CLIENT_ID:CLIENT_SECRET"</code>)</li>
<li class=""><strong>Update amount handling</strong> — v2 amounts are in centavos (PHP minor units). PHP 500.00 = <code>50000</code></li>
<li class=""><strong>Update webhook verification</strong> — v2 signs webhooks with HMAC-SHA256 using your webhook secret in the <code>x-nextpay-signature</code> header</li>
</ol>
<p>Contact your NextPay account manager to receive v2 credentials and a migration timeline specific to your integration.</p>]]></content>
        <author>
            <name>NextAPI Team</name>
            <uri>https://nextpay.world</uri>
        </author>
        <category label="Release" term="Release"/>
        <category label="v2.0.0" term="v2.0.0"/>
        <category label="Documentation" term="Documentation"/>
        <category label="API" term="API"/>
        <category label="Launch" term="Launch"/>
    </entry>
    <entry>
        <title type="html"><![CDATA[v1.0.0 - NextAPI Developer Documentation Launch]]></title>
        <id>https://developers.nextpay.world/changelog/2025/11/26/nextapi-docs-launch</id>
        <link href="https://developers.nextpay.world/changelog/2025/11/26/nextapi-docs-launch"/>
        <updated>2025-11-26T00:00:00.000Z</updated>
        <summary type="html"><![CDATA[Release Date: November 26, 2025]]></summary>
        <content type="html"><![CDATA[<p><strong>Release Date:</strong> November 26, 2025<br>
<strong>Version:</strong> 1.0.0<br>
<strong>Type:</strong> Major Release</p>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="-build-powerful-payment-solutions-with-nextapi">🚀 Build Powerful Payment Solutions with NextAPI<a href="https://developers.nextpay.world/changelog/2025/11/26/nextapi-docs-launch#-build-powerful-payment-solutions-with-nextapi" class="hash-link" aria-label="Direct link to 🚀 Build Powerful Payment Solutions with NextAPI" title="Direct link to 🚀 Build Powerful Payment Solutions with NextAPI" translate="no">​</a></h2>
<p>We're excited to launch comprehensive developer documentation for NextAPI! Whether you're building digital wallets, processing payments, or creating financial platforms, our new documentation provides everything you need to integrate NextAPI quickly and successfully.</p>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="-what-you-can-build">💡 What You Can Build<a href="https://developers.nextpay.world/changelog/2025/11/26/nextapi-docs-launch#-what-you-can-build" class="hash-link" aria-label="Direct link to 💡 What You Can Build" title="Direct link to 💡 What You Can Build" translate="no">​</a></h2>
<div class="my-8 grid gap-4 md:grid-cols-2 lg:grid-cols-3"><div class="h-full rounded-lg border border-border bg-card p-6 flex flex-col gap-2"><div class="font-semibold text-card-foreground">💳 Payment Processing</div><div class="text-sm text-muted-foreground flex-1">Accept payments through GCash, Maya, bank transfers, and more</div><a href="https://developers.nextpay.world/docs/tutorials/getting-started/your-first-api-call" class="mt-2 block w-full rounded-md bg-primary px-4 py-2 text-center text-sm font-medium text-primary-foreground hover:opacity-90 hover:no-underline">Start Accepting Payments</a></div><div class="h-full rounded-lg border border-border bg-card p-6 flex flex-col gap-2"><div class="font-semibold text-card-foreground">👛 Digital Wallets</div><div class="text-sm text-muted-foreground flex-1">Create and manage user wallets with full transaction isolation</div><a href="https://developers.nextpay.world/docs/concepts/wallet-structure" class="mt-2 block w-full rounded-md border border-primary px-4 py-2 text-center text-sm font-medium text-primary hover:bg-primary hover:text-primary-foreground hover:no-underline">Build Wallet Features</a></div><div class="h-full rounded-lg border border-border bg-card p-6 flex flex-col gap-2"><div class="font-semibold text-card-foreground">📊 Mass Payouts</div><div class="text-sm text-muted-foreground flex-1">Process payroll, refunds, and bulk payments efficiently</div><a href="https://developers.nextpay.world/docs/guides/money-out/send-a-single-payout" class="mt-2 block w-full rounded-md bg-secondary px-4 py-2 text-center text-sm font-medium text-secondary-foreground hover:opacity-90 hover:no-underline">Handle Bulk Payments</a></div></div>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="-documentation-features">📚 Documentation Features<a href="https://developers.nextpay.world/changelog/2025/11/26/nextapi-docs-launch#-documentation-features" class="hash-link" aria-label="Direct link to 📚 Documentation Features" title="Direct link to 📚 Documentation Features" translate="no">​</a></h2>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="-clear-learning-paths">🎯 Clear Learning Paths<a href="https://developers.nextpay.world/changelog/2025/11/26/nextapi-docs-launch#-clear-learning-paths" class="hash-link" aria-label="Direct link to 🎯 Clear Learning Paths" title="Direct link to 🎯 Clear Learning Paths" translate="no">​</a></h3>
<ul>
<li class=""><strong>Beginner Quickstarts</strong> - Get your first payment working in minutes</li>
<li class=""><strong>Step-by-Step Guides</strong> - Follow detailed tutorials for common use cases</li>
<li class=""><strong>API Reference</strong> - Complete documentation with real examples</li>
<li class=""><strong>Best Practices</strong> - Learn security, compliance, and optimization</li>
</ul>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="-developer-tools">🔧 Developer Tools<a href="https://developers.nextpay.world/changelog/2025/11/26/nextapi-docs-launch#-developer-tools" class="hash-link" aria-label="Direct link to 🔧 Developer Tools" title="Direct link to 🔧 Developer Tools" translate="no">​</a></h3>
<ul>
<li class=""><strong>Interactive Examples</strong> - Copy-paste ready code samples</li>
<li class=""><strong>Fast Search</strong> - Find exactly what you need instantly</li>
<li class=""><strong>Mobile-Friendly</strong> - Build on any device, anywhere</li>
<li class=""><strong>Dark Mode</strong> - Comfortable coding experience</li>
</ul>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="-business-solutions">🏢 Business Solutions<a href="https://developers.nextpay.world/changelog/2025/11/26/nextapi-docs-launch#-business-solutions" class="hash-link" aria-label="Direct link to 🏢 Business Solutions" title="Direct link to 🏢 Business Solutions" translate="no">​</a></h2>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="e-commerce--marketplaces">E-commerce &amp; Marketplaces<a href="https://developers.nextpay.world/changelog/2025/11/26/nextapi-docs-launch#e-commerce--marketplaces" class="hash-link" aria-label="Direct link to E-commerce &amp; Marketplaces" title="Direct link to E-commerce &amp; Marketplaces" translate="no">​</a></h3>
<ul>
<li class="">Enable multiple payment methods for customers</li>
<li class="">Handle escrow and multi-party transactions</li>
<li class="">Automate refund and dispute processes</li>
</ul>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="saas-platforms">SaaS Platforms<a href="https://developers.nextpay.world/changelog/2025/11/26/nextapi-docs-launch#saas-platforms" class="hash-link" aria-label="Direct link to SaaS Platforms" title="Direct link to SaaS Platforms" translate="no">​</a></h3>
<ul>
<li class="">Add payment processing to your software</li>
<li class="">Create user wallets for credit management</li>
<li class="">Implement subscription billing and invoicing</li>
</ul>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="financial-services">Financial Services<a href="https://developers.nextpay.world/changelog/2025/11/26/nextapi-docs-launch#financial-services" class="hash-link" aria-label="Direct link to Financial Services" title="Direct link to Financial Services" translate="no">​</a></h3>
<ul>
<li class="">Build lending and savings applications</li>
<li class="">Create investment platforms with wallet integration</li>
<li class="">Develop remittance and cross-border payment solutions</li>
</ul>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="-quick-start-guide">🚀 Quick Start Guide<a href="https://developers.nextpay.world/changelog/2025/11/26/nextapi-docs-launch#-quick-start-guide" class="hash-link" aria-label="Direct link to 🚀 Quick Start Guide" title="Direct link to 🚀 Quick Start Guide" translate="no">​</a></h2>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="for-new-developers">For New Developers<a href="https://developers.nextpay.world/changelog/2025/11/26/nextapi-docs-launch#for-new-developers" class="hash-link" aria-label="Direct link to For New Developers" title="Direct link to For New Developers" translate="no">​</a></h3>
<ol>
<li class=""><strong><a class="" href="https://developers.nextpay.world/docs/tutorials/getting-started/your-first-api-call">Get API Keys</a></strong> - Start with your first payment</li>
<li class=""><strong><a class="" href="https://developers.nextpay.world/docs/guides/money-out/send-a-single-payout">Create Payment Links</a></strong> - Accept payments without coding</li>
<li class=""><strong><a class="" href="https://developers.nextpay.world/docs/concepts/wallet-structure">Understand Wallets</a></strong> - Learn the core concepts</li>
</ol>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="for-experienced-teams">For Experienced Teams<a href="https://developers.nextpay.world/changelog/2025/11/26/nextapi-docs-launch#for-experienced-teams" class="hash-link" aria-label="Direct link to For Experienced Teams" title="Direct link to For Experienced Teams" translate="no">​</a></h3>
<ol>
<li class=""><strong><a class="" href="https://developers.nextpay.world/docs/guides/integration/setup-webhooks">Advanced Integration</a></strong> - Implement complex payment flows</li>
<li class=""><strong><a class="" href="https://developers.nextpay.world/docs/concepts/payout-lifecycle">SaaS Development</a></strong> - Build scalable platforms</li>
<li class=""><strong><a class="" href="https://developers.nextpay.world/docs/api-reference/nextpay-partners-api-v-2">Security &amp; Compliance</a></strong> - Ensure regulatory compliance</li>
</ol>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="-why-choose-nextapi">🌟 Why Choose NextAPI?<a href="https://developers.nextpay.world/changelog/2025/11/26/nextapi-docs-launch#-why-choose-nextapi" class="hash-link" aria-label="Direct link to 🌟 Why Choose NextAPI?" title="Direct link to 🌟 Why Choose NextAPI?" translate="no">​</a></h2>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="-philippine-market-focus">🇵🇭 Philippine Market Focus<a href="https://developers.nextpay.world/changelog/2025/11/26/nextapi-docs-launch#-philippine-market-focus" class="hash-link" aria-label="Direct link to 🇵🇭 Philippine Market Focus" title="Direct link to 🇵🇭 Philippine Market Focus" translate="no">​</a></h3>
<ul>
<li class=""><strong>Local Payment Methods</strong> - GCash, Maya, InstaPay, PESONet</li>
<li class=""><strong>Regulatory Compliance</strong> - Built for Philippine financial regulations</li>
<li class=""><strong>Multi-Currency Support</strong> - PHP and international currencies</li>
</ul>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="-developer-experience">⚡ Developer Experience<a href="https://developers.nextpay.world/changelog/2025/11/26/nextapi-docs-launch#-developer-experience" class="hash-link" aria-label="Direct link to ⚡ Developer Experience" title="Direct link to ⚡ Developer Experience" translate="no">​</a></h3>
<ul>
<li class=""><strong>Simple Integration</strong> - RESTful APIs with clear documentation</li>
<li class=""><strong>Real-time Updates</strong> - Instant webhooks for all payment events</li>
<li class=""><strong>Reliable Infrastructure</strong> - 99.9% uptime with enterprise-grade security</li>
</ul>
<h3 class="anchor anchorTargetStickyNavbar_Vzrq" id="-business-growth">📈 Business Growth<a href="https://developers.nextpay.world/changelog/2025/11/26/nextapi-docs-launch#-business-growth" class="hash-link" aria-label="Direct link to 📈 Business Growth" title="Direct link to 📈 Business Growth" translate="no">​</a></h3>
<ul>
<li class=""><strong>Scalable Platform</strong> - Handle from 100 to 1M+ transactions</li>
<li class=""><strong>Competitive Rates</strong> - Transparent pricing with volume discounts</li>
<li class=""><strong>Expert Support</strong> - Dedicated technical team to help you succeed</li>
</ul>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="-get-started-today">🤝 Get Started Today<a href="https://developers.nextpay.world/changelog/2025/11/26/nextapi-docs-launch#-get-started-today" class="hash-link" aria-label="Direct link to 🤝 Get Started Today" title="Direct link to 🤝 Get Started Today" translate="no">​</a></h2>
<div class="mt-8 p-6 bg-muted rounded-lg"><h3 class="text-lg font-semibold mb-2">Ready to build with NextAPI?</h3><p class="text-muted-foreground mb-4"></p><p>Join thousands of developers already processing payments through NextAPI. Our documentation provides everything you need to launch your payment solution.</p><p></p><div class="flex gap-3"><a href="https://developers.nextpay.world/sandbox" class="rounded-md bg-primary px-4 py-2 text-sm font-medium text-primary-foreground hover:opacity-90 hover:no-underline">Get API Keys</a><a href="https://developers.nextpay.world/docs/tutorials/getting-started/your-first-api-call" class="rounded-md border border-primary px-4 py-2 text-sm font-medium text-primary hover:bg-primary hover:text-primary-foreground hover:no-underline">Browse Documentation</a></div></div>
<h2 class="anchor anchorTargetStickyNavbar_Vzrq" id="-support--community">📞 Support &amp; Community<a href="https://developers.nextpay.world/changelog/2025/11/26/nextapi-docs-launch#-support--community" class="hash-link" aria-label="Direct link to 📞 Support &amp; Community" title="Direct link to 📞 Support &amp; Community" translate="no">​</a></h2>
<ul>
<li class=""><strong>📧 Developer Support:</strong> <a href="mailto:sales@nextfinancial.io" target="_blank" rel="noopener noreferrer" class="">sales@nextfinancial.io</a></li>
<li class=""><strong>💬 Real-time Help:</strong> Join our Discord community</li>
<li class=""><strong>📋 Feature Requests:</strong> Share feedback on GitHub</li>
<li class=""><strong>🎓 Business Consulting:</strong> Schedule a call with our solutions team</li>
</ul>
<hr>
<p><strong>Start building innovative payment solutions today!</strong> Our comprehensive documentation and expert support team are here to help you succeed with NextAPI.</p>]]></content>
        <author>
            <name>NextAPI Team</name>
            <uri>https://nextpay.world</uri>
        </author>
        <category label="Release" term="Release"/>
        <category label="v1.0.0" term="v1.0.0"/>
        <category label="Documentation" term="Documentation"/>
        <category label="Launch" term="Launch"/>
    </entry>
</feed>