Skip to main content
GET
/
payment_requests
List payment requests
curl --request GET \
  --url https://api.withacclaim.com/v1/payment_requests \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "prq_AbC123XyZ",
      "status": "RequiresPaymentMethod",
      "amount": 125000,
      "currency": "USD",
      "payer_id": "pyr_AbC123XyZ",
      "description": "Premium payment for policy #POL-2025-001",
      "order_id": "ORD-2025-001",
      "requires_tokenization": false,
      "allows_tokenization": false,
      "payment_method": {},
      "session_identifier": "prq_AbC123XyZ_abc123...",
      "shipping_address": {
        "country": "US",
        "address1": "123 Main St",
        "address2": "Suite 100",
        "city": "New York",
        "state": "NY",
        "postal_code": "10001"
      },
      "failure_code": "card_declined",
      "failure_message": "Card was declined",
      "expires_at": "2025-12-31T23:59:59Z",
      "completed_at": "2025-10-08T18:25:00Z",
      "ip_address": "192.168.1.1",
      "user_agent": "Mozilla/5.0...",
      "metadata": {
        "custom_field": "value",
        "source": "api"
      },
      "created_at": "2025-10-08T18:20:31Z",
      "updated_at": "2025-10-08T18:25:00Z"
    }
  ],
  "next_cursor": "<string>",
  "has_more": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer
default:25
Required range: 1 <= x <= 100
cursor
string

Response

A list of payment requests.

data
object[]
next_cursor
string | null
has_more
boolean
Last modified on April 16, 2026