> ## Documentation Index
> Fetch the complete documentation index at: https://docs.onlyfanskit.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Growth & promo

> SDK resources for growth: campaigns, trial links, promotions, audience lists, scheduling, following, and social links.

| Resource           | What it covers                                                                                                                                                                                                                                                    |
| ------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `of.campaigns`     | Native campaigns API: list, create, delete, transition, claimers, chart, share-access.                                                                                                                                                                            |
| `of.trackingLinks` | Thin alias of `campaigns` — `/tracking-links` doesn't exist on the native API.                                                                                                                                                                                    |
| `of.trialLinks`    | List, create, delete, toggle, share-access, stats, chart.                                                                                                                                                                                                         |
| `of.promotions`    | Subscriber promos: list, create, delete, finish, claim, invite, offers CRUD, reserve, stats, chart.                                                                                                                                                               |
| `of.lists`         | Audience lists: CRUD, list members, add / remove users, plus criteria-based bulk add (`addSubscribers`, `addTopSubscribers`, `addAwardWinners`, `addQueueBuyers`, `addStreamSegment`, `addStorySegment`, `addPostSegment`, `addClaimers`, `addCampaignClaimers`). |
| `of.schedules`     | Scheduled posts and chats counters, `laterPosts`, `laterChats`, `publish(id)`.                                                                                                                                                                                    |
| `of.following`     | Follow / unfollow, follow feed.                                                                                                                                                                                                                                   |
| `of.social`        | Spotify / Spring / Shopify / OpenSea connections + custom social buttons (link-tree).                                                                                                                                                                             |

## Recipes

```ts theme={"theme":{"light":"github-light","dark":"github-dark"}}
// Build a segment, then target it
const vip = await of.lists.create("VIP fans");
await of.lists.addTopSubscribers(vip.id);

// Trial link
const trial = await of.trialLinks.create({ /* ... */ });

// Publish a scheduled post now
await of.schedules.publish(scheduledPostId);
```

See [Fans & subscribers](/guides/fans-and-subscribers#lists) for list-based
targeting and [Mass messaging](/guides/mass-messaging) for campaigns.
