Skip to main content
GET
/
v1
/
sellers
/
next-payout
Get Next Payout
curl --request GET \
  --url https://api.agentpowers.ai/v1/sellers/next-payout
import 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.

expected_date
string | null
required
expected_cents
integer
required
currency
string
required