Skip to main content
GET
/
v1
/
payments
curl
curl https://api.paybridgenp.com/v1/payments?limit=20 \
  -H "Authorization: Bearer pk_sandbox_your_key"
{
  "data": [
    {
      "id": "pay_01j9x2k3m4n5p6q7r8s9t0u1v2",
      "livemode": true,
      "projectId": "<string>",
      "checkoutSessionId": "cs_01j9x2k3m4n5p6q7r8s9t0u1v2",
      "mode": "sandbox",
      "amount": 10000,
      "currency": "NPR",
      "provider": "esewa",
      "status": "pending",
      "providerRef": "<string>",
      "metadata": {},
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "total": 1,
    "limit": 2,
    "offset": 1
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.paybridgenp.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Your PayBridge API key. Obtain one from the dashboard under Settings → API Keys. Prefix: pk_sandbox_ for testing, pk_live_ for production.

Query Parameters

limit
integer
default:10

Number of payments to return.

Required range: 1 <= x <= 100
offset
integer
default:0

Number of payments to skip.

Required range: x >= 0

Response

Payments list.

data
object[]
meta
object