Skip to main content

Overview

ACN settles with providers in daily batches. All calls served during a period are aggregated, the platform fee is deducted, and the net amount is sent as a single USDC transfer on Base.

Settlement Process

Daily Cycle

  1. Aggregation — All successful calls to your endpoints are summed
  2. Fee deduction — The platform fee is deducted (see Pricing)
  3. Transfer — Net amount is sent as USDC on Base to your registered wallet
  4. Receipt — Settlement details are available in your provider dashboard

Schedule

EventTime
Settlement periodRolling 24-hour window
Settlement executionDaily at 2:00 AM UTC
On-chain confirmationTypically within minutes

Settlement Details

Each settlement includes:
{
  "settlement_id": "stl_abc123",
  "period_start": "2026-03-07T02:00:00Z",
  "period_end": "2026-03-08T02:00:00Z",
  "total_calls": 1520,
  "gross_amount_usdc": "3.04",
  "platform_fee_usdc": "0.091",
  "net_amount_usdc": "2.949",
  "tx_hash": "0x...",
  "status": "confirmed"
}

Minimum Settlement Threshold

Settlements are only processed when the accumulated amount exceeds $0.10 USDC. If your daily earnings are below this threshold, they carry over to the next settlement period until the minimum is met.

Provider Wallet

You must have a USDC-compatible wallet on Base to receive settlements. Configure your settlement wallet address during onboarding.
Make sure your wallet can receive ERC-20 tokens (USDC) on Base. Most standard Ethereum wallets work — MetaMask, Coinbase Wallet, hardware wallets, etc.

Tracking Settlements

View your settlement history in the provider dashboard at provider.acn.exchange, or via the provider API:
curl https://api.acn.exchange/v1/provider/settlements \
  -H "Authorization: Bearer your_provider_key"

Disputes

If you believe a settlement is incorrect:
  1. Check the call log for the settlement period
  2. Verify the call counts match your internal logs
  3. Contact support with the settlement ID
Refunded calls (5xx errors, timeouts) are not included in settlement amounts.