Read back a drop
API reference

Read back a drop

One drop you created: price, moderation status (overall and per media item), checkout URL, whether previews are attached, and a sales summary.

View as MarkdownUpdated Aug 19, 2026
GET/api/external/drops/{id}New

One drop you created: price, moderation status (overall and per media item), checkout URL, whether previews are attached, and a sales summary.

salesCount counts paid orders excluding refunds and chargebacks — stricter than check-status, which does not exclude them. Use this endpoint to verify a drop went APPROVED before attaching it to a post, and to see which media items still lack a baked preview.

Authentication

Send the creator's API key as a bearer token: Authorization: Bearer dpfn_…. See Authentication & API keys.

Path parameters

NameTypeRequiredDescription
idstringRequiredThe product (drop) id from create-drop.

Responses

200The drop.
NameTypeDescription
idstringThe product (drop) id.
namestring | nullDrop title. Null when created without a name.
pricenumberUSD **dollars**. 0 means free.
currencystringAlways "USD".
One of: USD
statusstringThe drop’s overall moderation status. A drop built from already-APPROVED vault items is APPROVED at creation.
One of: PENDING, APPROVED, REJECTED, FLAGGED
moderationReasonstring | nullWhy the drop was rejected or flagged. Null otherwise.
buyUrlstringThe web checkout page for this drop.
Format: uri
allowDownloadbooleanWhether buyers may download the files after purchase.
mediaCountintegerNumber of media items attached.
mediaobject[]Attached media in display order.
Show child attributes
vaultItemIdstringThe source vault item.
orderintegerDisplay position (0-based).
fileTypestringMedia kind.
One of: image, video, audio
moderationStatusstringPer-item moderation status.
One of: PENDING, APPROVED, REJECTED, FLAGGED
hasPreviewbooleanTrue once a baked blur preview was attached via POST /api/external/drops/{id}/previews.
salesCountintegerPaid orders, excluding refunds and chargebacks (stricter than check-status, which does NOT exclude refunds).
lastSaleAtstring | nullWhen the newest counted sale was paid. Null when never sold.
Format: date-time
createdAtstringCreation time.
Format: date-time
Example response
{
  "id": "clxdr0p000001prod",
  "name": "Beach set — 6 photos",
  "price": 25,
  "currency": "USD",
  "status": "APPROVED",
  "moderationReason": null,
  "buyUrl": "https://www.dropfans.io/buy/clxdr0p000001prod",
  "allowDownload": true,
  "mediaCount": 3,
  "media": [
    {
      "vaultItemId": "clxv1a2b30001item",
      "order": 0,
      "fileType": "image",
      "moderationStatus": "APPROVED",
      "hasPreview": true
    },
    {
      "vaultItemId": "clxv1a2b30002item",
      "order": 1,
      "fileType": "image",
      "moderationStatus": "APPROVED",
      "hasPreview": true
    },
    {
      "vaultItemId": "clxv1a2b30003item",
      "order": 2,
      "fileType": "video",
      "moderationStatus": "APPROVED",
      "hasPreview": false
    }
  ],
  "salesCount": 2,
  "lastSaleAt": "2026-08-18T21:03:00.000Z",
  "createdAt": "2026-08-15T09:00:00.000Z"
}

Errors

StatusBodyWhen
401{"error":"Unauthorized","code":"unauthorized"}Missing or invalid API key.
404{"error":"Drop not found"}No such drop on this account (another creator’s drop also 404s — never 403).

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/drops/$PRODUCT_ID" \
  -H "Authorization: Bearer $DROPFANS_API_KEY"

Questions? [email protected]