API reference
List your posts and their moderation status
Your posts, newest first, plus the current posting limits — read `limits` from the response rather than hardcoding numbers.
View as MarkdownUpdated Aug 19, 2026
GET
/api/external/postsYour posts, newest first, plus the current posting limits — read limits from the response rather than hardcoding numbers.
The status filter takes one moderation state; unrecognised values are silently ignored (you get the unfiltered list, not an error).
Authentication
Send the creator's API key as a bearer token: Authorization: Bearer dpfn_…. See Authentication & API keys.
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
page | integer | Optional | Page number, 1-based. Default: 1 |
limit | integer | Optional | Posts per page (default 20, cap 50 — larger values clamped). Default: 20Max: 50 |
status | string | Optional | Filter by moderation state (case-insensitive). Unrecognised values are ignored. One of: PENDING, APPROVED, REJECTED, FLAGGED |
Responses
200Your posts, newest first, plus the current limits.
| Name | Type | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
posts | Post[] | Your posts, newest first.Show child attributes
| |||||||||||||||||||||||||||||||||||||||||||||||||||
pagination | Pagination | Paging info (nested style — the vault list uses top-level fields instead).Show child attributes
| |||||||||||||||||||||||||||||||||||||||||||||||||||
limits | PostLimits | The current posting limits, so a client never hardcodes them.Show child attributes
|
Example response
{
"posts": [
{
"id": "clxp0st000001feed",
"kind": "MEDIA",
"caption": "rate my fit 1-10",
"status": "APPROVED",
"live": true,
"scheduledAt": null,
"publishedAt": "2026-08-18T19:00:00.000Z",
"createdAt": "2026-08-18T18:59:40.000Z",
"productId": null,
"likes": 14,
"comments": 3,
"media": [
{
"id": "clxpm3d1a0001post",
"vaultItemId": "clxv1a2b30001item",
"isPaid": false,
"order": 0,
"type": "image"
}
]
}
],
"pagination": {
"page": 1,
"limit": 20,
"total": 63,
"hasMore": true
},
"limits": {
"postsPerDay": 5,
"maxCaptionChars": 2000,
"maxMediaPerPost": 10,
"maxScheduleDays": 30,
"minPaidPrice": 5
}
}Errors
| Status | Body | When |
|---|---|---|
| 401 | {"error":"Unauthorized","code":"unauthorized"} | Missing or invalid API key. |
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/posts" \
-H "Authorization: Bearer $DROPFANS_API_KEY"const res = await fetch(`https://www.dropfans.io/api/external/posts`, {
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/posts",
headers={"Authorization": f"Bearer {os.environ['DROPFANS_API_KEY']}"},
)
print(res.json())Questions? [email protected]
