PhonePe website screenshot

PhonePe

PhonePe is India's largest UPI payments network, owned by Walmart. Its PhonePe Business / Developer platform exposes the PhonePe Payment Gateway (PG) APIs for collecting payments, refunds, and status checks across UPI, cards, netbanking, and wallets, alongside in-store solutions (Static QR, Dynamic QR, Collect Call, Integrated EDC). Backend integrations are wrapped in official Java, Python, Node.js, and PHP server SDKs, with mobile SDKs for Android, iOS, Flutter, React Native, and Ionic. PhonePe also operates the Indus AppStore, a developer platform for native app distribution in India.

18 APIs 0 Features
PaymentsPayment GatewayUPIQREDCApp StoreFintechIndia

APIs

PhonePe Payment Gateway API

Server-to-server REST API for creating PhonePe checkout orders, kicking off UPI / card / wallet / netbanking flows, and retrieving payment status. Issues redirect or intent URLs...

PhonePe Refunds API

Initiates refunds against completed PhonePe transactions and retrieves refund status. Supports partial and full refunds.

PhonePe Check Payment Status API

Polling endpoint to retrieve the current status of a payment order by merchant order ID. Used to reconcile in-store and online flows after buyer authorisation.

PhonePe S2S Callback / Webhook

Server-to-server callback that PhonePe POSTs to a merchant-configured URL on terminal payment events. Payloads are signed (X-VERIFY) so the merchant can verify authenticity befo...

PhonePe Dynamic QR Solution

Generates per-order dynamic QR codes for in-store collection, with order-linked status retrieval and callbacks. Targeted at retail counters and quick-service merchants.

PhonePe Integrated Static QR

Onboards a merchant store with a static PhonePe QR code that maps collected funds to the merchant account. Lower-touch alternative to dynamic QR for fixed-price kiosks and stalls.

PhonePe Collect Call Solution

Merchant-initiated UPI collect-request flow: the merchant raises a payment request to a customer's UPI handle, the customer approves in their UPI app, and the merchant is notifi...

PhonePe Integrated EDC Solution

Integration with PhonePe's EDC (Electronic Data Capture / POS) terminals, allowing merchant systems to push order amounts to the terminal and receive completion events.

PhonePe Android SDK

Native Android SDK that embeds the PhonePe checkout experience inside a merchant app, supporting the full PG flow across UPI and other payment methods.

PhonePe iOS SDK

Native iOS SDK that embeds the PhonePe checkout experience inside a merchant iOS app.

PhonePe Flutter SDK

Flutter plugin wrapping the PhonePe Android and iOS SDKs for cross-platform mobile checkout.

PhonePe React Native SDK

React Native plugin wrapping the PhonePe Android and iOS SDKs for cross-platform mobile checkout.

PhonePe Ionic SDK

Ionic plugin wrapping the PhonePe Android and iOS SDKs for hybrid mobile checkout.

PhonePe Java Backend SDK

Server-side Java SDK that wraps the PhonePe PG REST API, handling X-VERIFY signing, request modelling, and response parsing.

PhonePe Python Backend SDK

Server-side Python SDK wrapping the PhonePe PG REST API.

PhonePe Node.js Backend SDK

Server-side Node.js SDK wrapping the PhonePe PG REST API.

PhonePe PHP Backend SDK

Server-side PHP SDK wrapping the PhonePe PG REST API.

Indus AppStore Developer Platform

PhonePe's Indus AppStore is an India-first native Android app marketplace with a developer console for app submission, listings, releases, and analytics, positioning itself as a...

Collections

Pricing Plans

Phonepe Plans Pricing

1 plans

PLANS

Rate Limits

Phonepe Rate Limits

2 limits

RATE LIMITS

FinOps

Resources

🔗
Website
Website
🔗
Documentation
Documentation
🔗
LinkedIn
LinkedIn
👥
GitHub
GitHub
🔗
AppStore
AppStore

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: PhonePe Payment Gateway API
  version: 2.0.0
request:
  auth:
    type: apikey
    key: Authorization
    value: '{{Authorization}}'
    placement: header
items:
- info:
    name: Checkout
    type: folder
  items:
  - info:
      name: Create a checkout payment
      type: http
    http:
      method: POST
      url: https://api.phonepe.com/apis/pg/checkout/v2/pay
      body:
        type: json
        data: '{}'
    docs: 'Creates a PhonePe checkout order. The response contains a redirect or

      intent URL that the merchant surfaces to the buyer so they can

      authorize the payment.

      '
- info:
    name: Order Status
    type: folder
  items:
  - info:
      name: Get checkout order status
      type: http
    http:
      method: GET
      url: https://api.phonepe.com/apis/pg/checkout/v2/order/:merchantOrderId/status
      params:
      - name: merchantOrderId
        value: ''
        type: path
        description: Merchant-assigned order identifier.
    docs: 'Returns the latest payment status for a merchant order, identified

      by the merchant-assigned order ID.

      '
- info:
    name: Refunds
    type: folder
  items:
  - info:
      name: Initiate a refund
      type: http
    http:
      method: POST
      url: https://api.phonepe.com/apis/pg/payments/v2/refund
      body:
        type: json
        data: '{}'
    docs: 'Initiates a refund (partial or full) against a completed PhonePe

      transaction.

      '
  - info:
      name: Get refund status
      type: http
    http:
      method: GET
      url: https://api.phonepe.com/apis/pg/payments/v2/refund/:merchantRefundId/status
      params:
      - name: merchantRefundId
        value: ''
        type: path
    docs: 'Returns the latest status of a previously initiated refund, keyed by

      the merchant-assigned refund ID.

      '
bundled: true