List payers
Returns the payers that used this Recuut account in test or live data. The as_of time keeps the list unchanged while you read later pages.
/merchant/v1/payersRequest
Query Parameters
Stable snapshot timestamp for this page sequence. Include a timezone; future timestamps are rejected.
Show the newest or oldest records first.
Page number to return. The first page is 1.
Number of items to return on each page. Use 1 through 100.
Authentication
Private API key for your Recuut account. A recuut_test_ key uses test payers and transactions. A recuut_live_ key uses live data. Send this key only from your server.
In: header
Response
application/jsonSchema
items*PayerSchema[]
Fields on each PayerSchema
Payer activity in this account's test or live data.
Request example
curl --request GET \ --url "$RECUUT_API_URL/merchant/v1/payers" \ --header "Authorization: Bearer $RECUUT_API_KEY"HTTP response examples
{ "as_of": "2026-08-12T09:30:00Z", "count": 1, "items": [ { "created_at": "2026-08-01T08:00:00Z", "id": "pyr_00000000000070008000000000000000", "identifier": "0x1111111111111111111111111111111111111111", "last_transaction_at": "2026-08-12T09:30:00Z" } ], "next": null}