GET
/
v2
/
payouts
/
recurring
/
{id}
Get the status of a recurring payment
curl --request GET \
  --url https://api.request.network/v2/payouts/recurring/{id} \
  --header 'x-api-key: <x-api-key>'
{
"processedPayments": 3,
"totalPayments": 30,
"lastPaymentDate": "2025-01-04T10:00:00.000Z",
"nextPaymentDate": "2025-01-05T10:00:00.000Z",
"status": "active",
"requests": [
{
"paymentReference": "0xb3581f0b0f74cc61",
"requestId": "01e273ecc29d4b526df3a0f1f05ffc59372af8752c2b678096e49ac270416a7cdb"
}
],
"payments": [
{
"id": "01JXYJKCAHGFTDR15F2D072ESG",
"amount": "10",
"timestamp": "2025-01-04T10:00:00.000Z",
"txHash": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
}
]
}

Headers

x-api-key
string
required

API key for authentication

Path Parameters

id
string
required

The ID of the recurring payment

Example:

"01JXYJKCAHGFTDR15F2D072ESG"

Response

Recurring payment status retrieved successfully

The response is of type any.