Re-pitch dormant content
Find vault items with zero send activity in a window and re-target them to a cohort.
Who this is for: chatters and workspace owners (the view_analytics grant).
dormant is the set of vault items that had zero PPV sends in the look-back window — content
that's just sitting there and could be re-circulated instead of shot fresh.
curl "https://app.tease.link/api/admin/vault/dormant?window_days=30" \
-H "Authorization: Bearer $TEASE_API_KEY"Query parameters
| Field | Type | Required | Description |
|---|---|---|---|
window_days | integer | no | Look-back window, 1–3650 days. Defaults to 30. |
Response shape
{
"items": [
{
"media_id": "m_70011",
"title": "beach throwback",
"tags": ["outdoor", "bikini"],
"cover": true,
"last_sent": 1741000000
}
],
"count": 1,
"window_days": 30
}last_sent is null for an item that's never been sent — those sort first, since they need
a first pitch more than something that just went quiet again. Everything else sorts oldest-sent
first.
This is a pure read-only set difference over your own vault and send history — nothing about your OnlyFans account is touched, and no OnlyFans call is made.
What's next
Turn a dormant item into a targeted send with Get cohort-matched content recommendations, or check who's already bought it with Check a fan's purchase history before re-pitching to avoid a repeat sale.