Returns the payouts Adfin has made to the bank account.
Adfin API (1.0.0)
Adfin uses OAuth 2.0 access tokens to authenticate all API requests.
There are two contexts in which tokens are issued:
Biller Access Tokens — Generated via the Authorization Code flow when a biller connects their Adfin account. These tokens grant access to that biller's data (invoices, payment requests, customers, etc.).
Platform Access Tokens — Generated via the Client Credentials flow when a platform authenticates as itself rather than as one of its billers. A platform uses one to manage its own webhook subscriptions under
/api/apps/{clientId}/webhooks.
Only return payouts in these states. Repeat the parameter to name more than one, combined with OR. Omit it to return every state.
Only return payouts paid out on or after this date. Inclusive.
Only return payouts paid out on or before this date. Inclusive.
How many payouts to return per page. A request for more than the maximum is refused.
- Mock serverhttps://developer.adfin.com/_mock/products/partner-integration/partner-integration-api-reference/payouts
- Production API Server URLhttps://api.adfin.com/api/payouts
- Staging API Server URLhttps://api.staging.adfin.com/api/payouts
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.adfin.com/_mock/products/partner-integration/partner-integration-api-reference/payouts?status=SENT&minPayoutDate=2026-08-01&maxPayoutDate=2026-08-31&page=1&size=50&sort=payoutDate%2Cdesc' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "payouts": [ { … } ], "pagination": { "page": 0, "size": 0, "totalPages": 0, "totalElements": 0, "numberOfElements": 0, "sort": "string" } }
- Mock serverhttps://developer.adfin.com/_mock/products/partner-integration/partner-integration-api-reference/payouts/{payoutId}
- Production API Server URLhttps://api.adfin.com/api/payouts/{payoutId}
- Staging API Server URLhttps://api.staging.adfin.com/api/payouts/{payoutId}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.adfin.com/_mock/products/partner-integration/partner-integration-api-reference/payouts/{payoutId}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "status": "PROCESSING", "totalAmount": 0, "currencyCode": "AED", "payoutDate": "2026-08-24", "creationTime": "2019-08-24T14:15:22Z", "lastUpdatedTime": "2019-08-24T14:15:22Z", "reference": "string", "payoutItemsCount": 0 }
- Mock serverhttps://developer.adfin.com/_mock/products/partner-integration/partner-integration-api-reference/payouts/{payoutId}/items
- Production API Server URLhttps://api.adfin.com/api/payouts/{payoutId}/items
- Staging API Server URLhttps://api.staging.adfin.com/api/payouts/{payoutId}/items
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer.adfin.com/_mock/products/partner-integration/partner-integration-api-reference/payouts/{payoutId}/items?page=1&size=50&sort=creationTime%2Cdesc' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'The requested page of the breakdown.
The items that make up the payout
The currency of the item
The method the payment was collected with. Set for PAYMENT items.
The payment requests the payment was applied to. Set for PAYMENT items.
{ "items": [ { … } ], "pagination": { "page": 0, "size": 0, "totalPages": 0, "totalElements": 0, "numberOfElements": 0, "sort": "string" } }