Skip to content
Select themeSelect language

`GET /api/marketplace/seller/payout-accounts` — list payout accounts for the authenticated seller.

GET
/api/marketplace/seller/payout-accounts
curl --request GET \
--url https://example.com/api/marketplace/seller/payout-accounts
Media typeapplication/json
Array<object>

A payout account linked to a seller profile — bank details for SEPA or a Stripe Connect reference. status tracks verification lifecycle.

object
beneficiary_name
string | null
bic
string | null
created_at
required
string format: date-time
iban_fingerprint
string | null
iban_last4
string | null
id
required
string format: uuid
payout_method
required
string
seller_profile_id
required
string format: uuid
status
required
string
updated_at
required
string format: date-time
verified_at
string | null format: date-time
Examplegenerated
[
{
"beneficiary_name": "example",
"bic": "example",
"created_at": "2026-04-15T12:00:00Z",
"iban_fingerprint": "example",
"iban_last4": "example",
"id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"payout_method": "example",
"seller_profile_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"status": "example",
"updated_at": "2026-04-15T12:00:00Z",
"verified_at": "2026-04-15T12:00:00Z"
}
]