GET
/
payment-links
Get All Payment Links
curl --request GET \
  --url https://business-api.userivo.co/business/v1/payment-links \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "message": "Payment links retrieved successfully",
  "data": [
    {
      "_id": "64b2c1234567890",
      "title": "Support Campaign",
      "description": "Link for campaign donations",
      "amount": 1000,
      "currency": "usdt",
      "type": "crypto",
      "code": "xyz789abc012",
      "status": "pending",
      "isExactAmount": true,
      "expiresAt": "2026-07-11T12:00:00.000Z",
      "createdAt": "2026-07-10T12:00:00.000Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Your Business API Key

Query Parameters

page
integer
default:1
limit
integer
default:10

Response

200 - application/json

List of payment links retrieved successfully.