Skip to main content
Three singleton resources, keyed by your own account: there is nothing to identify in the URL, the target comes from your API key.

Base URL

The paths below are relative to this base. Both hosts serve the same endpoints.

The connect_activation object

string
Your account, acct_….
string
Always connect_activation.
string | null
marketplace, platform, or null if Connect is not activated. Immutable once set.

The connect_payout_schedule object

string
Always connect_payout_schedule.
string
Your account, acct_….
string | null
daily, weekly, or null.
boolean
Whether the automatic cadence is active.

Read your activation

Always returns 200, never 404: “not activated yet” is a first-class state.
200

Activate Connect

Activation has no API surface: it is done from the merchant dashboard, Connect section.
connect_mode is immutable once set. See Activate Connect.

Read your payout cadence

Always returns 200, with cadence: null and enabled: false when nothing is configured.

Configure the payout cadence

Returns

The connect_payout_schedule object, as 200, not 201: the resource is your account, it already exists. Posting again replaces the configuration.
200
This endpoint is naturally idempotent: it has neither an Idempotency-Key nor rate limiting.

Read your activity overview

The gross volume charged on behalf of your vendors, your new vendors, and the leaderboards — over a period, compared with the previous one. This is the data behind the Connect screen of the dashboard.

Returns

200
object
Gross amount of intents captured or refunded on behalf of a vendor (gross before refund), in your account’s currency. points has one entry per granularity step, with the current value and the reference period’s value folded onto the same step.
object
Vendors created over the period, same shape as gross_volume. Deleted vendors are excluded.
array
Up to 4 vendors, ranked by volume or by growth. delta is a percentage; null when the reference period is empty — never a made-up +100%.
An incompatible range × granularity pair (for example 30d × month) returns 422 with errors[0].rule = "compatible_with_range". Dates are UTC.

Errors