Get Next Payout
curl --request GET \
--url https://api.agentpowers.ai/v1/sellers/next-payoutimport requests
url = "https://api.agentpowers.ai/v1/sellers/next-payout"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.agentpowers.ai/v1/sellers/next-payout', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"expected_date": "<string>",
"expected_cents": 123,
"currency": "<string>"
}sellers
Get Next Payout
Next scheduled Stripe payout for the seller (G2 — issue #140).
Synthesized from Account.settings.payouts.schedule (interval + anchor + delay_days) + current Balance.available. Returns 404 when there’s no Connect account, the schedule is manual or unknown, or Stripe is unreachable — the frontend treats 404 as “hide the row.” Returns 200 with expected_date=null when the balance is zero so the row hides gracefully without a 404 round-trip.
GET
/
v1
/
sellers
/
next-payout
Get Next Payout
curl --request GET \
--url https://api.agentpowers.ai/v1/sellers/next-payoutimport requests
url = "https://api.agentpowers.ai/v1/sellers/next-payout"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.agentpowers.ai/v1/sellers/next-payout', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"expected_date": "<string>",
"expected_cents": 123,
"currency": "<string>"
}Response
200 - application/json
Successful Response
Next scheduled Stripe payout for a seller (issue #140 G2).
expected_date is null when the seller is Connect-configured but currently has a zero available balance -- the frontend hides the row gracefully without a 404 round-trip.
Was this page helpful?