Earnings stats, chart and recent transactions
The same revenue the creator sees on their own dashboard: drop sales + tips + subscription payments, refunds and chargebacks excluded, bucketed by day in the caller's timezone.
/api/external/earningsThe same revenue the creator sees on their own dashboard: drop sales + tips + subscription payments, refunds and chargebacks excluded, bucketed by day in the caller's timezone.
Everything here is in cents (the balance endpoint is dollars). stats.totalEarningsCents is NET (after the platform fee); grossEarningsCents and the chart series are seller GROSS (buyer-paid minus tax, before the fee) so per-day merges against your own gross ledgers compare like for like. Pass tz = the creator's timezone (read it from GET /api/external/timezone) or your day buckets won't match their dashboard.
transactions is always the newest 50 across all three sources — there is no pagination. To get a complete ledger, narrow the date window until fewer than 50 come back.
Authentication
Send the creator's API key as a bearer token: Authorization: Bearer dpfn_…. See Authentication & API keys.
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
startDate | string | Required | Window start, YYYY-MM-DD, interpreted in tz.Format: date |
endDate | string | Required | Window end (inclusive), YYYY-MM-DD, interpreted in tz.Format: date |
tz | string | Optional | IANA timezone for day bucketing. **Invalid values silently fall back to UTC** — no error. Default: "UTC"Format: iana-timezone |
Responses
| Name | Type | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
stats | EarningsStats | Window totals. Cents throughout (the balance endpoint is dollars).Show child attributes
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
chart | EarningsChart | Bucketed GROSS series in the caller’s timezone.Show child attributes
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
transactions | EarningsTransaction[] | The newest 50 transactions across all three sources — a fixed cap, not a page. For a complete ledger, narrow the date window until fewer than 50 come back.Show child attributes
|
{
"stats": {
"totalEarningsCents": 182050,
"grossEarningsCents": 214180,
"previousPeriodEarningsCents": 141200,
"previousPeriodGrossEarningsCents": 166100,
"transactionCount": 41,
"avgTransactionCents": 4440,
"uniqueCustomers": 28,
"typeTotals": {
"drop": {
"grossCents": 150000,
"netCents": 127500,
"count": 30
},
"tip": {
"grossCents": 44180,
"netCents": 37550,
"count": 8
},
"subscription": {
"grossCents": 20000,
"netCents": 17000,
"count": 3
}
}
},
"chart": {
"labels": [
"Aug 18",
"Aug 19"
],
"values": [
12500,
9800
],
"dates": [
"2026-08-18",
"2026-08-19"
],
"groupBy": "day",
"typedValues": {
"drop": [
10000,
7500
],
"tip": [
2500,
2300
],
"subscription": [
0,
0
]
}
},
"transactions": [
{
"id": "clx0rd3r000001sale",
"productId": "clxdr0p000001prod",
"productName": "Beach set — 6 photos",
"amountCents": 2000,
"grossAmountCents": 2500,
"buyerEmail": "[email protected]",
"buyerName": null,
"paidAt": "2026-08-18T21:03:00.000Z",
"type": "drop"
}
]
}Errors
| Status | Body | When |
|---|---|---|
| 400 | {"error":"startDate and endDate query params are required (YYYY-MM-DD)"} | Either date param is missing. |
| 401 | {"error":"Unauthorized","code":"unauthorized"} | Missing or invalid API key. |
| 500 | {"error":"Failed to fetch earnings"} | Query failed — retry later. |
Rate limiting
Every response carries the X-RateLimit-Tier header and, on limited tiers, the per-minute and per-day trios — read X-RateLimit-Remaining and X-RateLimit-Reset instead of hardcoding limits. Details in Rate limits.
Code samples
curl "https://www.dropfans.io/api/external/earnings?startDate=2026-08-01&endDate=2026-08-19&tz=Europe%2FStockholm" \
-H "Authorization: Bearer $DROPFANS_API_KEY"const res = await fetch(`https://www.dropfans.io/api/external/earnings?startDate=2026-08-01&endDate=2026-08-19&tz=Europe%2FStockholm`, {
headers: {
Authorization: `Bearer ${process.env.DROPFANS_API_KEY}`,
},
});
console.log(await res.json());import os
import requests
res = requests.get(
"https://www.dropfans.io/api/external/earnings",
headers={"Authorization": f"Bearer {os.environ['DROPFANS_API_KEY']}"},
params={"startDate": "2026-08-01", "endDate": "2026-08-19", "tz": "Europe/Stockholm"},
)
print(res.json())Notes
Chart bucketing: day for spans ≤31 days, week ≤90, month beyond. transactions[].productId only exists on type "drop" — use it to join a sale back to the drop your app created. Because refunds are excluded here but NOT in check-status, the two can legitimately disagree.
Questions? [email protected]
