Skip to main content
GET
/
collections
List payment links
curl --request GET \
  --url http://localhost:4000/v1/collections \
  --header 'Authorization: Bearer <token>'
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('http://localhost:4000/v1/collections', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "http://localhost:4000/v1/collections"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
{
  "status": "success",
  "message": "Payment links fetched",
  "data": {
    "collections": [
      {
        "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567891",
        "status": "awaiting_origin",
        "linkMode": "invoice",
        "pricingType": "fixed",
        "label": "Invoice #1042",
        "customerId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
        "customerName": "Acme Ltd",
        "receiveAmount": 500,
        "destination": {
          "key": "solana",
          "network": "Solana",
          "symbol": "USDC",
          "address": "2dudFU32c5wsRpfRZDXBAJFirHC4hindqpKSCwwtDaAB"
        },
        "payUrl": "https://pay.remitflex.io/a1b2c3d4-e5f6-7890-abcd-ef1234567891",
        "createdAt": "2026-06-26T09:00:00.000Z"
      },
      {
        "id": "b2c3d4e5-f6a7-8901-bcde-f12345678902",
        "status": "active",
        "linkMode": "checkout",
        "pricingType": "fixed",
        "label": "Pro plan",
        "customerId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
        "customerName": "Acme Ltd",
        "sessionCount": 2,
        "receiveAmount": 49,
        "destination": {
          "key": "solana",
          "network": "Solana",
          "symbol": "USDC",
          "address": "2dudFU32c5wsRpfRZDXBAJFirHC4hindqpKSCwwtDaAB"
        },
        "payUrl": "https://pay.remitflex.io/b2c3d4e5-f6a7-8901-bcde-f12345678902",
        "createdAt": "2026-06-26T08:00:00.000Z"
      }
    ],
    "total": 2
  }
}

Authorizations

Authorization
string
header
required

API key created in the Remitflex Dashboard at dashboard.remitflex.io (rmf_live_... or rmf_test_...). Key management endpoints require a dashboard JWT and are not part of this reference.

Query Parameters

customerId
string<uuid>

Filter results to a single customer under your organisation.

Example:

"a1b2c3d4-e5f6-7890-abcd-ef1234567890"

Response

200 - application/json

Payment links list

status
string
Example:

"success"

message
string
data
object