# CreatorAPI · full developer documentation > One API for OnlyFans and Fansly. Base URL https://api.creator-api.com. Paste this entire file into Claude or Codex, then describe what you want to build · every route below is callable through the pattern GET/POST https://api.creator-api.com/v1/{account}/native/{path} with header X-API-Key. ===================== QUICKSTART ===================== # CreatorAPI · Quickstart One API for OnlyFans and Fansly. Native access, no per call platform fees, one key for both. Base URL: `https://api.creator-api.com` ## 1. Authenticate Every request carries your API key in a header: ``` X-API-Key: ``` `Authorization: Bearer ` works too. Keys have a scope: * `readonly` · GET requests only. * `full` · reads plus writes (POST, PUT, PATCH, DELETE). Check your key and balance any time: ```bash curl -H "X-API-Key: $CREATOR_API_KEY" https://api.creator-api.com/v1/whoami curl -H "X-API-Key: $CREATOR_API_KEY" https://api.creator-api.com/v1/billing ``` ## 2. Connect a creator account You call the API on behalf of a connected creator account. Connect one with an import: ```bash curl -X POST https://api.creator-api.com/v1/connect/import \ -H "X-API-Key: $CREATOR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "platform": "onlyfans", "proxy": "http://user:pass@host:port", "auth": { "...": "session credentials" } }' ``` For Fansly set `"platform": "fansly"`. List your connected accounts with `GET /v1/accounts`. Each account gets an id · that id is the `{account}` in every native call below. ## 3. Make a call Both platforms share one pattern. The `{account}` decides which platform is hit, so the same key and the same route serve OnlyFans and Fansly: ``` {METHOD} https://api.creator-api.com/v1/{account}/native/{path} ``` Example, list a creator's subscribers on OnlyFans: ```bash curl -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscriptions/subscribers?limit=50" ``` The full path catalog per platform is in the reference files: * OnlyFans · `reference-onlyfans.md` · 194 capabilities. * Fansly · `reference-fansly.md`. ## 4. Billing (credits) Calls draw credits from your balance. Unmetered keys (internal) are never charged. | Action | Credits | |---|---| | Native read (GET) | 1 | | Native write | 2 | | Webhook write | 1 | | Smart link write | 1 | | Tag write | 0 | | Data export job | 10 | | Fan AI summary | 25 (cache hit free) | Buy credits through Stripe Checkout: ```bash curl -X POST https://api.creator-api.com/v1/billing/checkout \ -H "X-API-Key: $CREATOR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "plan": "pack_10k" }' ``` The response carries a Stripe URL. On payment the credits land automatically. See `GET /v1/billing/plans` for the packs and `GET /v1/billing/orders` for history. ## 5. Platform features (beyond raw routes) These sit on top of the native layer and work the same for both platforms: * Webhooks · `POST /v1/{account}/webhooks`. Signed delivery (HMAC SHA256), retry with backoff. Event catalog at `GET /v1/webhooks/events`. * Data exports · `POST /v1/{account}/exports`. Bulk datasets (subscribers, transactions, chats, posts) to CSV or JSONL, download when done. * Smart links · `POST /v1/links`. Trackable short links with click stats. Public redirect at `/l/{slug}`. * Tags · `POST /v1/tags`. First party CRM metadata on any entity. Free. * Fan AI summary · `GET /v1/{account}/fans/{fan_id}/summary`. A structured brief on a fan (persona, spend signal, churn risk, suggested next message) built from the native chat history. ## 6. Errors Standard HTTP status codes, JSON body `{ "error": "..." }`: * `401` · missing or invalid key. * `402` · insufficient credits. * `403` · key scope too low, or the route is gated by the platform. * `404` · route or object not found. * `429` · rate limit for your key exceeded, retry after a moment. ## 7. Build with Claude or Codex Paste `llms-full.txt` (the whole API in one file) into Claude or Codex and describe what you want to build. The model then writes working calls against every route below. Machine readable catalogs: `capabilities-onlyfans.json`, `capabilities-fansly.json`, and the OpenAPI spec at `https://api.creator-api.com/openapi.json`. ===================== ONLYFANS REFERENCE ===================== # CreatorAPI · OnlyFans reference > Auto generated from the verified native parity layer. Every path below is a real OnlyFans `/api2/v2` route reached through the CreatorAPI proxy. GET routes marked verified were probed live (HTTP 200). Writes are harvested routes, verify on first call. **194 capabilities** · 89 GET live verified · 89 writes · 33 groups. ## How every call works All native OnlyFans routes are reached through one pattern: ``` {METHOD} https://api.creator-api.com/v1/{account}/native/{native_path} ``` `{account}` is the connected creator id. Auth header `X-API-Key: ` (or `Authorization: Bearer `). GET is read only; POST/PUT/PATCH/DELETE need a full scope key. Billing: read = 1 credit, write = 2 credits. ## account ### Get current account · ✅ live verified [account] GET /users/me. `GET /v1/{account}/native/users/me` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/me?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/users/me?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/me?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get model start date · ✅ live verified [account] GET /users/me/start-date-model. `GET /v1/{account}/native/users/me/start-date-model` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/me/start-date-model?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/users/me/start-date-model?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/me/start-date-model?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Update profile · ✅ live verified [settings] PATCH /users/me. `PATCH /v1/{account}/native/users/me` · 2 credit(s) ```bash curl -X PATCH \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/me" -d '{}' ``` ```python import requests r = requests.patch( "https://api.creator-api.com/v1/{account}/native/users/me", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/me", { method: "PATCH", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## analytics-financial ### Get transaction summary · ✅ live verified [analytics-financial] GET /payments/all/transactions. summarise client-side `GET /v1/{account}/native/payments/all/transactions` · 1 credit(s) · summarise client-side ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payments/all/transactions?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/payments/all/transactions?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payments/all/transactions?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get transactions by type · ✅ live verified [analytics-financial] GET /payments/all/transactions. filter by type client-side `GET /v1/{account}/native/payments/all/transactions` · 1 credit(s) · summarise client-side ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payments/all/transactions?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/payments/all/transactions?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payments/all/transactions?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List transactions · ✅ live verified [transactions] GET /payments/all/transactions. exists as get_all_transactions `GET /v1/{account}/native/payments/all/transactions` · 1 credit(s) · summarise client-side ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payments/all/transactions?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/payments/all/transactions?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payments/all/transactions?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## analytics-summary ### Get earnings overview · ✅ live verified [analytics-summary] GET /users/me/stats/overview. `GET /v1/{account}/native/users/me/stats/overview` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/me/stats/overview?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/users/me/stats/overview?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/me/stats/overview?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Statistics overview · ✅ live verified [statistics] GET /users/me/stats/overview. `GET /v1/{account}/native/users/me/stats/overview` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/me/stats/overview?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/users/me/stats/overview?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/me/stats/overview?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## banking ### Get account country details · ✅ live verified [banking] GET /payouts/account. `GET /v1/{account}/native/payouts/account` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payouts/account?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/payouts/account?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payouts/account?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get bank payout details · ✅ live verified [banking] GET /payouts/bank. `GET /v1/{account}/native/payouts/bank` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payouts/bank?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/payouts/bank?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payouts/bank?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get dac7form details [banking] GET /payouts/dac7. 403 gated (eligibility) `GET /v1/{account}/native/payouts/dac7` · 1 credit(s) · 403 gated (eligibility) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payouts/dac7?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/payouts/dac7?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payouts/dac7?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get legal and tax status · ✅ live verified [banking] GET /payouts/legal-info. `GET /v1/{account}/native/payouts/legal-info` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payouts/legal-info?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/payouts/legal-info?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payouts/legal-info?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get legal form details · ✅ live verified [banking] GET /payouts/legal-form. `GET /v1/{account}/native/payouts/legal-form` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payouts/legal-form?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/payouts/legal-form?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payouts/legal-form?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List available payout systems · ✅ live verified [banking] GET /payouts/account. systems in account payload `GET /v1/{account}/native/payouts/account` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payouts/account?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/payouts/account?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payouts/account?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List countries · ✅ live verified [banking] GET /countries/payouts. `GET /v1/{account}/native/countries/payouts` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/countries/payouts?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/countries/payouts?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/countries/payouts?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## blocked-restricted-users ### List blocked users · ✅ live verified [blocked-restricted-users] GET /users/blocked. `GET /v1/{account}/native/users/blocked` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/blocked?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/users/blocked?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/blocked?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List restricted users · ✅ live verified [blocked-restricted-users] GET /users/restrict. `GET /v1/{account}/native/users/restrict` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/restrict?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/users/restrict?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/restrict?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## chargebacks ### Calculate chargeback ratio · ✅ live verified [chargebacks] GET /payouts/chargebacks/ratio. `GET /v1/{account}/native/payouts/chargebacks/ratio` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payouts/chargebacks/ratio?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/payouts/chargebacks/ratio?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payouts/chargebacks/ratio?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List chargeback statistics · ✅ live verified [chargebacks] GET /payouts/chargebacks/chart. `GET /v1/{account}/native/payouts/chargebacks/chart` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payouts/chargebacks/chart?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/payouts/chargebacks/chart?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payouts/chargebacks/chart?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List chargebacks · ✅ live verified [chargebacks] GET /payouts/chargebacks. `GET /v1/{account}/native/payouts/chargebacks` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payouts/chargebacks?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/payouts/chargebacks?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payouts/chargebacks?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## chat-messages ### Attach tags release forms to message [chat-messages] POST /release-forms/attach. `POST /v1/{account}/native/release-forms/attach` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/release-forms/attach" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/release-forms/attach", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/release-forms/attach", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## chats ### Mark all chats as read [chats] POST /chats/mark-as-read. `POST /v1/{account}/native/chats/mark-as-read` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chats/mark-as-read" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/chats/mark-as-read", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chats/mark-as-read", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## engagement-messages ### Get mass message overview · ✅ live verified [mass-messaging] GET /messages/queue/chart. `GET /v1/{account}/native/messages/queue/chart` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/messages/queue/chart?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/messages/queue/chart?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/messages/queue/chart?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List mass message queue · ✅ live verified [mass-messaging] GET /messages/queue. `GET /v1/{account}/native/messages/queue` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/messages/queue?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/messages/queue?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/messages/queue?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Mass messages · ✅ live verified [engagement-messages] GET /messages/queue. `GET /v1/{account}/native/messages/queue` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/messages/queue?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/messages/queue?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/messages/queue?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Mass messages chart · ✅ live verified [engagement-messages] GET /messages/queue/chart. `GET /v1/{account}/native/messages/queue/chart` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/messages/queue/chart?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/messages/queue/chart?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/messages/queue/chart?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Send mass message · ✅ live verified [mass-messaging] POST /messages/queue. `POST /v1/{account}/native/messages/queue` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/messages/queue" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/messages/queue", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/messages/queue", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Top message · ✅ live verified [engagement-messages] GET /users/me/stats/top/message. `GET /v1/{account}/native/users/me/stats/top/message` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/me/stats/top/message?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/users/me/stats/top/message?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/me/stats/top/message?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## fans ### List active fans · ✅ live verified [fans] GET /subscriptions/subscribers. type=active `GET /v1/{account}/native/subscriptions/subscribers` · 1 credit(s) · type=active ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscriptions/subscribers?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/subscriptions/subscribers?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/subscriptions/subscribers?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List all fans · ✅ live verified [fans] GET /subscriptions/subscribers. all `GET /v1/{account}/native/subscriptions/subscribers` · 1 credit(s) · type=active ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscriptions/subscribers?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/subscriptions/subscribers?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/subscriptions/subscribers?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List expired fans · ✅ live verified [fans] GET /subscriptions/subscribers/recent-expired. `GET /v1/{account}/native/subscriptions/subscribers/recent-expired` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscriptions/subscribers/recent-expired?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/subscriptions/subscribers/recent-expired?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/subscriptions/subscribers/recent-expired?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List latest fans · ✅ live verified [fans] GET /subscriptions/subscribers/latest. exists as get_latest_fans `GET /v1/{account}/native/subscriptions/subscribers/latest` · 1 credit(s) · exists as get_latest_fans ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscriptions/subscribers/latest?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/subscriptions/subscribers/latest?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/subscriptions/subscribers/latest?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List top fans · ✅ live verified [fans] GET /subscriptions/subscribers/top. `GET /v1/{account}/native/subscriptions/subscribers/top` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscriptions/subscribers/top?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/subscriptions/subscribers/top?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/subscriptions/subscribers/top?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## following ### List active followings · ✅ live verified [following] GET /subscriptions/subscribes. type=active `GET /v1/{account}/native/subscriptions/subscribes` · 1 credit(s) · type=active ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscriptions/subscribes?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/subscriptions/subscribes?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/subscriptions/subscribes?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List all followings · ✅ live verified [following] GET /subscriptions/subscribes. all `GET /v1/{account}/native/subscriptions/subscribes` · 1 credit(s) · type=active ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscriptions/subscribes?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/subscriptions/subscribes?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/subscriptions/subscribes?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List expired followings · ✅ live verified [following] GET /subscriptions/subscribes. expired `GET /v1/{account}/native/subscriptions/subscribes` · 1 credit(s) · type=active ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscriptions/subscribes?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/subscriptions/subscribes?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/subscriptions/subscribes?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## free-trial-links ### Create free trial link · ✅ live verified [free-trial-links] POST /trials. `POST /v1/{account}/native/trials` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/trials" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/trials", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/trials", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get free trial link cohort arps · ✅ live verified [free-trial-links] GET /trials/stats. arps in stats payload `GET /v1/{account}/native/trials/stats` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/trials/stats?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/trials/stats?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/trials/stats?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get free trial link stats · ✅ live verified [free-trial-links] GET /trials/stats. `GET /v1/{account}/native/trials/stats` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/trials/stats?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/trials/stats?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/trials/stats?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List free trial link spenders · ✅ live verified [free-trial-links] GET /trials/share-access. `GET /v1/{account}/native/trials/share-access` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/trials/share-access?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/trials/share-access?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/trials/share-access?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List free trial link subscribers · ✅ live verified [free-trial-links] GET /trials/share-access. `GET /v1/{account}/native/trials/share-access` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/trials/share-access?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/trials/share-access?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/trials/share-access?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List free trial links · ✅ live verified [free-trial-links] GET /trials. `GET /v1/{account}/native/trials` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/trials?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/trials?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/trials?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## media-vault ### Delete vault media [media-vault] PUT /vault/media/hidden. OF soft-delete: body {list:[mediaIds],hidden:true} (no hard-delete route) `PUT /v1/{account}/native/vault/media/hidden` · 2 credit(s) · OF soft-delete: body {list:[mediaIds],hidden:true} (no hard-delete route) ```bash curl -X PUT \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/vault/media/hidden" -d '{}' ``` ```python import requests r = requests.put( "https://api.creator-api.com/v1/{account}/native/vault/media/hidden", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/vault/media/hidden", { method: "PUT", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List vault media · ✅ live verified [media-vault] GET /vault/media. exists as get_vault_media `GET /v1/{account}/native/vault/media` · 1 credit(s) · exists as get_vault_media ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/vault/media?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/vault/media?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/vault/media?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## media-vault-lists ### Create vault list [media-vault-lists] POST /vault/lists. `POST /v1/{account}/native/vault/lists` · 2 credit(s) · exists as get_vault_lists (400 noparam) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/vault/lists" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/vault/lists", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/vault/lists", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List vault lists [media-vault-lists] GET /vault/lists. exists as get_vault_lists (400 noparam) `GET /v1/{account}/native/vault/lists` · 1 credit(s) · exists as get_vault_lists (400 noparam) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/vault/lists?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/vault/lists?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/vault/lists?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## misc ### Add media to list [media-vault-lists] POST /vault/lists/{id}/media. `POST /v1/{account}/native/vault/lists/{list_id}/media` · 2 credit(s) Path params: `list_id` ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/vault/lists/{list_id}/media" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/vault/lists/{list_id}/media", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/vault/lists/{list_id}/media", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Add story to highlight [story-highlights] PUT /stories/highlights/{id}. `PUT /v1/{account}/native/stories/highlights/{highlight_id}` · 2 credit(s) Path params: `highlight_id` ```bash curl -X PUT \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/stories/highlights/{highlight_id}" -d '{}' ``` ```python import requests r = requests.put( "https://api.creator-api.com/v1/{account}/native/stories/highlights/{highlight_id}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/stories/highlights/{highlight_id}", { method: "PUT", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Archive post [posts] POST /posts/{id}/archive. native path /posts/{id}/{state}archive `POST /v1/{account}/native/posts/{post_id}/archive` · 2 credit(s) Path params: `post_id` ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/posts/{post_id}/archive" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/posts/{post_id}/archive", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/posts/{post_id}/archive", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Block user [users] POST /users/{id}/block. `POST /v1/{account}/native/users/{user_id}/block` · 2 credit(s) Path params: `user_id` ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/{user_id}/block" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/users/{user_id}/block", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/{user_id}/block", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Clear user list [user-list-collections] DELETE /lists/{id}/users. `DELETE /v1/{account}/native/lists/{list_id}/users` · 2 credit(s) Path params: `list_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/lists/{list_id}/users" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/lists/{list_id}/users", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/lists/{list_id}/users", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create post comment [post-comments] POST /posts/{id}/comments. `POST /v1/{account}/native/posts/{post_id}/comments` · 2 credit(s) Path params: `post_id` ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/posts/{post_id}/comments" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/posts/{post_id}/comments", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/posts/{post_id}/comments", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Delete bundle [subscription-bundles] DELETE /subscriptions/bundles/{id}. `DELETE /v1/{account}/native/subscriptions/bundles/{bundle_id}` · 2 credit(s) Path params: `bundle_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscriptions/bundles/{bundle_id}" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/subscriptions/bundles/{bundle_id}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/subscriptions/bundles/{bundle_id}", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Delete chat [chats] DELETE /chats/{id}. `DELETE /v1/{account}/native/chats/{chat_id}` · 2 credit(s) Path params: `chat_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chats/{chat_id}" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/chats/{chat_id}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chats/{chat_id}", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Delete free trial link [free-trial-links] DELETE /trials/{id}. `DELETE /v1/{account}/native/trials/{trial_id}` · 2 credit(s) Path params: `trial_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/trials/{trial_id}" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/trials/{trial_id}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/trials/{trial_id}", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Delete message [chat-messages] DELETE /messages/{id}. `DELETE /v1/{account}/native/messages/{message_id}` · 2 credit(s) Path params: `message_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/messages/{message_id}" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/messages/{message_id}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/messages/{message_id}", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Delete post [posts] DELETE /posts/{id}. `DELETE /v1/{account}/native/posts/{post_id}` · 2 credit(s) Path params: `post_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/posts/{post_id}" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/posts/{post_id}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/posts/{post_id}", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Delete post comment [post-comments] DELETE /comments/{id}. `DELETE /v1/{account}/native/comments/{comment_id}` · 2 credit(s) Path params: `comment_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/comments/{comment_id}" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/comments/{comment_id}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/comments/{comment_id}", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Delete promotion [promotions] DELETE /promotions/{id}. `DELETE /v1/{account}/native/promotions/{promotion_id}` · 2 credit(s) Path params: `promotion_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/promotions/{promotion_id}" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/promotions/{promotion_id}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/promotions/{promotion_id}", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Delete social media button [settings] DELETE /users/social/buttons/{id}. `DELETE /v1/{account}/native/users/social/buttons/{button_id}` · 2 credit(s) Path params: `button_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/social/buttons/{button_id}" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/users/social/buttons/{button_id}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/social/buttons/{button_id}", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Delete story [stories] DELETE /stories/{id}. `DELETE /v1/{account}/native/stories/{story_id}` · 2 credit(s) Path params: `story_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/stories/{story_id}" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/stories/{story_id}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/stories/{story_id}", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Delete story highlight [story-highlights] DELETE /stories/highlights/{id}. `DELETE /v1/{account}/native/stories/highlights/{highlight_id}` · 2 credit(s) Path params: `highlight_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/stories/highlights/{highlight_id}" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/stories/highlights/{highlight_id}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/stories/highlights/{highlight_id}", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Delete tracking link [tracking-links] DELETE /campaigns/{id}. `DELETE /v1/{account}/native/campaigns/{campaign_id}` · 2 credit(s) Path params: `campaign_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/campaigns/{campaign_id}" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/campaigns/{campaign_id}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/campaigns/{campaign_id}", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Delete user list [user-list-collections] DELETE /lists/{id}. `DELETE /v1/{account}/native/lists/{list_id}` · 2 credit(s) Path params: `list_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/lists/{list_id}" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/lists/{list_id}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/lists/{list_id}", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Delete vault list [media-vault-lists] DELETE /vault/lists/{id}. `DELETE /v1/{account}/native/vault/lists/{list_id}` · 2 credit(s) Path params: `list_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/vault/lists/{list_id}" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/vault/lists/{list_id}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/vault/lists/{list_id}", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Enable disable drm [settings] PATCH /users/me/settings/{id}. {id}=section name string `PATCH /v1/{account}/native/users/me/settings/{setting_id}` · 2 credit(s) Path params: `setting_id` ```bash curl -X PATCH \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/me/settings/{setting_id}" -d '{}' ``` ```python import requests r = requests.patch( "https://api.creator-api.com/v1/{account}/native/users/me/settings/{setting_id}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/me/settings/{setting_id}", { method: "PATCH", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get free trial link [free-trial-links] GET /trials/{id}. `GET /v1/{account}/native/trials/{trial_id}` · 1 credit(s) Path params: `trial_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/trials/{trial_id}?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/trials/{trial_id}?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/trials/{trial_id}?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get mass message [mass-messaging] GET /messages/queue/{id}. `GET /v1/{account}/native/messages/queue/{queue_id}` · 1 credit(s) Path params: `queue_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/messages/queue/{queue_id}?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/messages/queue/{queue_id}?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/messages/queue/{queue_id}?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get post [posts] GET /posts/{id}. `GET /v1/{account}/native/posts/{post_id}` · 1 credit(s) Path params: `post_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/posts/{post_id}?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/posts/{post_id}?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/posts/{post_id}?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get profile details [public-profiles] GET /users/{id}. exists as get_profile (by handle) `GET /v1/{account}/native/users/{user_id}` · 1 credit(s) Path params: `user_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/{user_id}?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/users/{user_id}?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/{user_id}?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get specific chat message [chat-messages] GET /chats/{id}/messages/{id}. templated id 404 on sample; route in client `GET /v1/{account}/native/chats/{chat_id}/messages/{message_id}` · 1 credit(s) Path params: `chat_id`, `message_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/messages/{message_id}?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/messages/{message_id}?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/messages/{message_id}?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get story stats [stories] GET /stories/{id}/stats. `GET /v1/{account}/native/stories/{story_id}/stats` · 1 credit(s) Path params: `story_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/stories/{story_id}/stats?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/stories/{story_id}/stats?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/stories/{story_id}/stats?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get subscription history [fans] GET /subscriptions/{id}/history. `GET /v1/{account}/native/subscriptions/{subscription_id}/history` · 1 credit(s) Path params: `subscription_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscriptions/{subscription_id}/history?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/subscriptions/{subscription_id}/history?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/subscriptions/{subscription_id}/history?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get tracking link [tracking-links] GET /campaigns/{id}. `GET /v1/{account}/native/campaigns/{campaign_id}` · 1 credit(s) Path params: `campaign_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/campaigns/{campaign_id}?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/campaigns/{campaign_id}?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/campaigns/{campaign_id}?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get user details [users] GET /users/{id}. `GET /v1/{account}/native/users/{user_id}` · 1 credit(s) Path params: `user_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/{user_id}?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/users/{user_id}?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/{user_id}?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get user list [user-list-collections] GET /lists/{id}. `GET /v1/{account}/native/lists/{list_id}` · 1 credit(s) Path params: `list_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/lists/{list_id}?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/lists/{list_id}?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/lists/{list_id}?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get vault media [media-vault] GET /vault/media/{id}. `GET /v1/{account}/native/vault/media/{media_id}` · 1 credit(s) Path params: `media_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/vault/media/{media_id}?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/vault/media/{media_id}?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/vault/media/{media_id}?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Hide chat [chats] POST /chats/{id}/hide. `POST /v1/{account}/native/chats/{chat_id}/hide` · 2 credit(s) Path params: `chat_id` ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/hide" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/hide", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/hide", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Like message [chat-messages] POST /messages/{id}/like. `POST /v1/{account}/native/messages/{message_id}/like` · 2 credit(s) Path params: `message_id` ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/messages/{message_id}/like" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/messages/{message_id}/like", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/messages/{message_id}/like", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Like post comment [post-comments] POST /comments/{id}/like. `POST /v1/{account}/native/comments/{comment_id}/like` · 2 credit(s) Path params: `comment_id` ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/comments/{comment_id}/like" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/comments/{comment_id}/like", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/comments/{comment_id}/like", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List chat media gallery [chats] GET /chats/{id}/media. `GET /v1/{account}/native/chats/{chat_id}/media` · 1 credit(s) Path params: `chat_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/media?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/media?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/media?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List chat messages [chat-messages] GET /chats/{id}/messages. exists as get_chat_messages `GET /v1/{account}/native/chats/{chat_id}/messages` · 1 credit(s) Path params: `chat_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/messages?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/messages?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/messages?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List pinned users in user list [user-list-collections] GET /lists/{id}/users/pinned. `GET /v1/{account}/native/lists/{list_id}/users/pinned` · 1 credit(s) Path params: `list_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/lists/{list_id}/users/pinned?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/lists/{list_id}/users/pinned?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/lists/{list_id}/users/pinned?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List post comments [post-comments] GET /posts/{id}/comments. `GET /v1/{account}/native/posts/{post_id}/comments` · 1 credit(s) Path params: `post_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/posts/{post_id}/comments?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/posts/{post_id}/comments?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/posts/{post_id}/comments?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List story highlights [story-highlights] GET /users/{id}/stories/highlights. `GET /v1/{account}/native/users/{user_id}/stories/highlights` · 1 credit(s) Path params: `user_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/{user_id}/stories/highlights?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/users/{user_id}/stories/highlights?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/{user_id}/stories/highlights?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List story viewers [stories] GET /stories/{id}/viewers. `GET /v1/{account}/native/stories/{story_id}/viewers` · 1 credit(s) Path params: `story_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/stories/{story_id}/viewers?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/stories/{story_id}/viewers?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/stories/{story_id}/viewers?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List tracking link spenders [tracking-links] GET /campaigns/{id}/claimers. `GET /v1/{account}/native/campaigns/{campaign_id}/claimers` · 1 credit(s) Path params: `campaign_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/campaigns/{campaign_id}/claimers?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/campaigns/{campaign_id}/claimers?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/campaigns/{campaign_id}/claimers?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List tracking link subscribers [tracking-links] GET /campaigns/{id}/claimers. `GET /v1/{account}/native/campaigns/{campaign_id}/claimers` · 1 credit(s) Path params: `campaign_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/campaigns/{campaign_id}/claimers?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/campaigns/{campaign_id}/claimers?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/campaigns/{campaign_id}/claimers?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List trending gifs [giphy] GET /giphy/proxy/{id}. proxy family; needs type/key segment `GET /v1/{account}/native/giphy/proxy/{proxy_id}` · 1 credit(s) Path params: `proxy_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/giphy/proxy/{proxy_id}?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/giphy/proxy/{proxy_id}?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/giphy/proxy/{proxy_id}?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List user list users [user-list-collections] GET /lists/{id}/users. `GET /v1/{account}/native/lists/{list_id}/users` · 1 credit(s) Path params: `list_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/lists/{list_id}/users?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/lists/{list_id}/users?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/lists/{list_id}/users?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Mark chat as read [chats] POST /chats/{id}/mark-as-read. `POST /v1/{account}/native/chats/{chat_id}/mark-as-read` · 2 credit(s) Path params: `chat_id` ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/mark-as-read" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/mark-as-read", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/mark-as-read", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Mark chat as unread [chats] DELETE /chats/{id}/mark-as-read. `DELETE /v1/{account}/native/chats/{chat_id}/mark-as-read` · 2 credit(s) Path params: `chat_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/mark-as-read" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/mark-as-read", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/mark-as-read", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Mark story as watched [stories] PUT /stories/{id}/watched. `PUT /v1/{account}/native/stories/{story_id}/watched` · 2 credit(s) Path params: `story_id` ```bash curl -X PUT \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/stories/{story_id}/watched" -d '{}' ``` ```python import requests r = requests.put( "https://api.creator-api.com/v1/{account}/native/stories/{story_id}/watched", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/stories/{story_id}/watched", { method: "PUT", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Message buyers [engagement-messages] GET /messages/queue/{id}/buyers. sample 404 (no qmsg id on hyla) `GET /v1/{account}/native/messages/queue/{queue_id}/buyers` · 1 credit(s) Path params: `queue_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/messages/queue/{queue_id}/buyers?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/messages/queue/{queue_id}/buyers?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/messages/queue/{queue_id}/buyers?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Mute chat notifications [chats] POST /chats/{id}/mute. `POST /v1/{account}/native/chats/{chat_id}/mute` · 2 credit(s) Path params: `chat_id` ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/mute" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/mute", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/mute", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Pin message [chat-messages] POST /messages/{id}/pin. `POST /v1/{account}/native/messages/{message_id}/pin` · 2 credit(s) Path params: `message_id` ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/messages/{message_id}/pin" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/messages/{message_id}/pin", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/messages/{message_id}/pin", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Pin post comment [post-comments] POST /comments/{id}/pin. `POST /v1/{account}/native/comments/{comment_id}/pin` · 2 credit(s) Path params: `comment_id` ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/comments/{comment_id}/pin" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/comments/{comment_id}/pin", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/comments/{comment_id}/pin", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Pin unpin post [posts] POST /posts/{id}/pin. `POST /v1/{account}/native/posts/{post_id}/pin` · 2 credit(s) Path params: `post_id` ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/posts/{post_id}/pin" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/posts/{post_id}/pin", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/posts/{post_id}/pin", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Pin unpin user in user list [user-list-collections] POST /lists/{id}/users/{id}/pin. `POST /v1/{account}/native/lists/{list_id}/users/{user_id}/pin` · 2 credit(s) Path params: `list_id`, `user_id` ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/lists/{list_id}/users/{user_id}/pin" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/lists/{list_id}/users/{user_id}/pin", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/lists/{list_id}/users/{user_id}/pin", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Publish queue item [queue] PUT /schedules/{id}/publish. `PUT /v1/{account}/native/schedules/{schedule_id}/publish` · 2 credit(s) Path params: `schedule_id` ```bash curl -X PUT \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/schedules/{schedule_id}/publish" -d '{}' ``` ```python import requests r = requests.put( "https://api.creator-api.com/v1/{account}/native/schedules/{schedule_id}/publish", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/schedules/{schedule_id}/publish", { method: "PUT", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Remove media from list [media-vault-lists] DELETE /vault/lists/{id}/media. `DELETE /v1/{account}/native/vault/lists/{list_id}/media` · 2 credit(s) Path params: `list_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/vault/lists/{list_id}/media" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/vault/lists/{list_id}/media", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/vault/lists/{list_id}/media", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Remove story from highlight [story-highlights] DELETE /stories/highlights/{id}/{id}. `DELETE /v1/{account}/native/stories/highlights/{highlight_id}/{highlight_id2}` · 2 credit(s) Path params: `highlight_id`, `highlight_id2` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/stories/highlights/{highlight_id}/{highlight_id2}" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/stories/highlights/{highlight_id}/{highlight_id2}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/stories/highlights/{highlight_id}/{highlight_id2}", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Remove user from a user list [user-list-collections] DELETE /lists/{id}/users/{id}. exists as remove_from_list `DELETE /v1/{account}/native/lists/{list_id}/users/{user_id}` · 2 credit(s) Path params: `list_id`, `user_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/lists/{list_id}/users/{user_id}" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/lists/{list_id}/users/{user_id}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/lists/{list_id}/users/{user_id}", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Rename vault list [media-vault-lists] PATCH /vault/lists/{id}. `PATCH /v1/{account}/native/vault/lists/{list_id}` · 2 credit(s) Path params: `list_id` ```bash curl -X PATCH \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/vault/lists/{list_id}" -d '{}' ``` ```python import requests r = requests.patch( "https://api.creator-api.com/v1/{account}/native/vault/lists/{list_id}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/vault/lists/{list_id}", { method: "PATCH", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Restrict user [users] POST /users/{id}/restrict. `POST /v1/{account}/native/users/{user_id}/restrict` · 2 credit(s) Path params: `user_id` ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/{user_id}/restrict" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/users/{user_id}/restrict", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/{user_id}/restrict", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Search chat messages [chat-messages] GET /chats/{id}/messages/search. `GET /v1/{account}/native/chats/{chat_id}/messages/search` · 1 credit(s) Path params: `chat_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/messages/search?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/messages/search?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/messages/search?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Search gifs [giphy] GET /giphy/proxy/{id}. proxy family; needs type/key segment `GET /v1/{account}/native/giphy/proxy/{proxy_id}` · 1 credit(s) Path params: `proxy_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/giphy/proxy/{proxy_id}?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/giphy/proxy/{proxy_id}?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/giphy/proxy/{proxy_id}?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Show post statistics [posts] GET /posts/{id}/stats. `GET /v1/{account}/native/posts/{post_id}/stats` · 1 credit(s) Path params: `post_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/posts/{post_id}/stats?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/posts/{post_id}/stats?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/posts/{post_id}/stats?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Show story [stories] GET /stories/{id}. `GET /v1/{account}/native/stories/{story_id}` · 1 credit(s) Path params: `story_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/stories/{story_id}?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/stories/{story_id}?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/stories/{story_id}?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Show story highlight [story-highlights] GET /stories/highlights/{id}. `GET /v1/{account}/native/stories/highlights/{highlight_id}` · 1 credit(s) Path params: `highlight_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/stories/highlights/{highlight_id}?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/stories/highlights/{highlight_id}?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/stories/highlights/{highlight_id}?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Show vault list [media-vault-lists] GET /vault/lists/{id}. `GET /v1/{account}/native/vault/lists/{list_id}` · 1 credit(s) Path params: `list_id` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/vault/lists/{list_id}?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/vault/lists/{list_id}?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/vault/lists/{list_id}?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Stop promotion [promotions] POST /promotions/{id}/finish. `POST /v1/{account}/native/promotions/{promotion_id}/finish` · 2 credit(s) Path params: `promotion_id` ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/promotions/{promotion_id}/finish" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/promotions/{promotion_id}/finish", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/promotions/{promotion_id}/finish", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Subscribe to user [users] POST /users/{id}/subscribe. `POST /v1/{account}/native/users/{user_id}/subscribe` · 2 credit(s) Path params: `user_id` ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/{user_id}/subscribe" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/users/{user_id}/subscribe", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/{user_id}/subscribe", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Unarchive post [posts] POST /posts/{id}/archive. native path /posts/{id}/{state}archive `POST /v1/{account}/native/posts/{post_id}/archive` · 2 credit(s) Path params: `post_id` ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/posts/{post_id}/archive" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/posts/{post_id}/archive", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/posts/{post_id}/archive", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Unblock user [users] DELETE /users/{id}/block. `DELETE /v1/{account}/native/users/{user_id}/block` · 2 credit(s) Path params: `user_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/{user_id}/block" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/users/{user_id}/block", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/{user_id}/block", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Unlike message [chat-messages] DELETE /messages/{id}/like. `DELETE /v1/{account}/native/messages/{message_id}/like` · 2 credit(s) Path params: `message_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/messages/{message_id}/like" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/messages/{message_id}/like", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/messages/{message_id}/like", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Unlike post comment [post-comments] DELETE /comments/{id}/like. `DELETE /v1/{account}/native/comments/{comment_id}/like` · 2 credit(s) Path params: `comment_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/comments/{comment_id}/like" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/comments/{comment_id}/like", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/comments/{comment_id}/like", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Unmute chat notifications [chats] DELETE /chats/{id}/mute. `DELETE /v1/{account}/native/chats/{chat_id}/mute` · 2 credit(s) Path params: `chat_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/mute" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/mute", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chats/{chat_id}/mute", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Unpin message [chat-messages] DELETE /messages/{id}/pin. `DELETE /v1/{account}/native/messages/{message_id}/pin` · 2 credit(s) Path params: `message_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/messages/{message_id}/pin" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/messages/{message_id}/pin", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/messages/{message_id}/pin", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Unpin post comment [post-comments] DELETE /comments/{id}/pin. `DELETE /v1/{account}/native/comments/{comment_id}/pin` · 2 credit(s) Path params: `comment_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/comments/{comment_id}/pin" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/comments/{comment_id}/pin", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/comments/{comment_id}/pin", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Unrestrict user [users] DELETE /users/{id}/restrict. `DELETE /v1/{account}/native/users/{user_id}/restrict` · 2 credit(s) Path params: `user_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/{user_id}/restrict" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/users/{user_id}/restrict", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/{user_id}/restrict", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Unsend delete mass message [mass-messaging] DELETE /messages/queue/{id}. `DELETE /v1/{account}/native/messages/queue/{queue_id}` · 2 credit(s) Path params: `queue_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/messages/queue/{queue_id}" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/messages/queue/{queue_id}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/messages/queue/{queue_id}", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Unsubscribe from user [users] DELETE /users/{id}/subscribe. `DELETE /v1/{account}/native/users/{user_id}/subscribe` · 2 credit(s) Path params: `user_id` ```bash curl -X DELETE \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/{user_id}/subscribe" -d '{}' ``` ```python import requests r = requests.delete( "https://api.creator-api.com/v1/{account}/native/users/{user_id}/subscribe", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/{user_id}/subscribe", { method: "DELETE", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Update blocked countries [settings] PATCH /users/me/settings/{id}. {id}=section name string `PATCH /v1/{account}/native/users/me/settings/{setting_id}` · 2 credit(s) Path params: `setting_id` ```bash curl -X PATCH \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/me/settings/{setting_id}" -d '{}' ``` ```python import requests r = requests.patch( "https://api.creator-api.com/v1/{account}/native/users/me/settings/{setting_id}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/me/settings/{setting_id}", { method: "PATCH", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Update mass message [mass-messaging] PUT /messages/queue/{id}. `PUT /v1/{account}/native/messages/queue/{queue_id}` · 2 credit(s) Path params: `queue_id` ```bash curl -X PUT \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/messages/queue/{queue_id}" -d '{}' ``` ```python import requests r = requests.put( "https://api.creator-api.com/v1/{account}/native/messages/queue/{queue_id}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/messages/queue/{queue_id}", { method: "PUT", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Update post [posts] PUT /posts/{id}. `PUT /v1/{account}/native/posts/{post_id}` · 2 credit(s) Path params: `post_id` ```bash curl -X PUT \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/posts/{post_id}" -d '{}' ``` ```python import requests r = requests.put( "https://api.creator-api.com/v1/{account}/native/posts/{post_id}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/posts/{post_id}", { method: "PUT", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Update social media button [settings] PUT /users/social/buttons/{id}. `PUT /v1/{account}/native/users/social/buttons/{button_id}` · 2 credit(s) Path params: `button_id` ```bash curl -X PUT \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/social/buttons/{button_id}" -d '{}' ``` ```python import requests r = requests.put( "https://api.creator-api.com/v1/{account}/native/users/social/buttons/{button_id}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/social/buttons/{button_id}", { method: "PUT", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Update story highlight [story-highlights] PATCH /stories/highlights/{id}. `PATCH /v1/{account}/native/stories/highlights/{highlight_id}` · 2 credit(s) Path params: `highlight_id` ```bash curl -X PATCH \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/stories/highlights/{highlight_id}" -d '{}' ``` ```python import requests r = requests.patch( "https://api.creator-api.com/v1/{account}/native/stories/highlights/{highlight_id}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/stories/highlights/{highlight_id}", { method: "PATCH", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Update subscription price [settings] PATCH /users/me/settings/{id}. {id}=section name string, not numeric `PATCH /v1/{account}/native/users/me/settings/{setting_id}` · 2 credit(s) Path params: `setting_id` ```bash curl -X PATCH \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/me/settings/{setting_id}" -d '{}' ``` ```python import requests r = requests.patch( "https://api.creator-api.com/v1/{account}/native/users/me/settings/{setting_id}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/me/settings/{setting_id}", { method: "PATCH", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Update user list [user-list-collections] PATCH /lists/{id}. `PATCH /v1/{account}/native/lists/{list_id}` · 2 credit(s) Path params: `list_id` ```bash curl -X PATCH \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/lists/{list_id}" -d '{}' ``` ```python import requests r = requests.patch( "https://api.creator-api.com/v1/{account}/native/lists/{list_id}", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/lists/{list_id}", { method: "PATCH", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## notifications ### Get notification counts · ✅ live verified [notifications] GET /users/notifications/count. `GET /v1/{account}/native/users/notifications/count` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/notifications/count?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/users/notifications/count?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/notifications/count?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get notification tabs order · ✅ live verified [notifications] GET /users/notifications/settings/tabs-order. `GET /v1/{account}/native/users/notifications/settings/tabs-order` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/notifications/settings/tabs-order?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/users/notifications/settings/tabs-order?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/notifications/settings/tabs-order?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List notifications · ✅ live verified [notifications] GET /users/notifications. exists as get_notifications `GET /v1/{account}/native/users/notifications` · 1 credit(s) · exists as get_notifications ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/notifications?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/users/notifications?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/notifications?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Mark all notifications as read [notifications] POST /users/notifications/read. `POST /v1/{account}/native/users/notifications/read` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/notifications/read" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/users/notifications/read", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/notifications/read", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Search users in notifications [notifications] GET /users/notifications/users. 400 needs query `GET /v1/{account}/native/users/notifications/users` · 1 credit(s) · 400 needs query ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/notifications/users?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/users/notifications/users?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/notifications/users?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Update notification tabs order · ✅ live verified [notifications] POST /users/notifications/settings/tabs-order. `POST /v1/{account}/native/users/notifications/settings/tabs-order` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/notifications/settings/tabs-order" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/users/notifications/settings/tabs-order", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/notifications/settings/tabs-order", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## payouts ### Get account balances · ✅ live verified [payouts] GET /payouts/balances. `GET /v1/{account}/native/payouts/balances` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payouts/balances?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/payouts/balances?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payouts/balances?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get earning statistics · ✅ live verified [payouts] GET /payouts/stats. `GET /v1/{account}/native/payouts/stats` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payouts/stats?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/payouts/stats?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payouts/stats?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get eligibility · ✅ live verified [payouts] GET /payouts/check-receive. `GET /v1/{account}/native/payouts/check-receive` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payouts/check-receive?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/payouts/check-receive?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payouts/check-receive?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List payout requests · ✅ live verified [payouts] GET /payouts/requests. `GET /v1/{account}/native/payouts/requests` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payouts/requests?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/payouts/requests?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payouts/requests?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Request manual withdrawal · ✅ live verified [payouts] POST /payouts/requests. `POST /v1/{account}/native/payouts/requests` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payouts/requests" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/payouts/requests", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payouts/requests", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Update payout frequency · ✅ live verified [payouts] PATCH /payouts/requests. `PATCH /v1/{account}/native/payouts/requests` · 2 credit(s) ```bash curl -X PATCH \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payouts/requests" -d '{}' ``` ```python import requests r = requests.patch( "https://api.creator-api.com/v1/{account}/native/payouts/requests", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payouts/requests", { method: "PATCH", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## post-labels ### Create label · ✅ live verified [post-labels] POST /labels. `POST /v1/{account}/native/labels` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/labels" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/labels", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/labels", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List labels · ✅ live verified [post-labels] GET /labels. `GET /v1/{account}/native/labels` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/labels?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/labels?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/labels?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## posts ### List posts · ✅ live verified [posts] GET /posts. `GET /v1/{account}/native/posts` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/posts?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/posts?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/posts?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Send post · ✅ live verified [posts] POST /posts. `POST /v1/{account}/native/posts` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/posts" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/posts", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/posts", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## promotions ### Create promotion · ✅ live verified [promotions] POST /promotions. `POST /v1/{account}/native/promotions` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/promotions" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/promotions", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/promotions", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List promotions · ✅ live verified [promotions] GET /promotions. `GET /v1/{account}/native/promotions` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/promotions?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/promotions?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/promotions?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## public-profiles ### Search profiles · ✅ live verified [public-profiles] GET /users/performers-search. exists as search_performers `GET /v1/{account}/native/users/performers-search` · 1 credit(s) · exists as search_performers ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/performers-search?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/users/performers-search?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/performers-search?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## queue ### Count queue items · ✅ live verified [queue] GET /schedules/counters. `GET /v1/{account}/native/schedules/counters` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/schedules/counters?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/schedules/counters?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/schedules/counters?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List queue items · ✅ live verified [queue] GET /schedules. `GET /v1/{account}/native/schedules` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/schedules?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/schedules?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/schedules?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## release-forms ### Create invitation link [release-forms] POST /release-form-links. `POST /v1/{account}/native/release-form-links` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/release-form-links" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/release-form-links", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/release-form-links", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create release form [release-forms] POST /release-form-documents. `POST /v1/{account}/native/release-form-documents` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/release-form-documents" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/release-form-documents", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/release-form-documents", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Hide unhide release form [release-forms] PATCH /release-forms/toggle-show. `PATCH /v1/{account}/native/release-forms/toggle-show` · 2 credit(s) ```bash curl -X PATCH \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/release-forms/toggle-show" -d '{}' ``` ```python import requests r = requests.patch( "https://api.creator-api.com/v1/{account}/native/release-forms/toggle-show", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/release-forms/toggle-show", { method: "PATCH", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List mentions · ✅ live verified [release-forms] GET /release-forms/mentions. exists as get_release_form_mentions `GET /v1/{account}/native/release-forms/mentions` · 1 credit(s) · exists as get_release_form_mentions ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/release-forms/mentions?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/release-forms/mentions?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/release-forms/mentions?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List release forms · ✅ live verified [release-forms] GET /release-forms. `GET /v1/{account}/native/release-forms` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/release-forms?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/release-forms?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/release-forms?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List taggable users · ✅ live verified [release-forms] GET /release-forms/mentions. same native route `GET /v1/{account}/native/release-forms/mentions` · 1 credit(s) · exists as get_release_form_mentions ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/release-forms/mentions?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/release-forms/mentions?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/release-forms/mentions?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Rename release form [release-forms] PATCH /release-forms/rename. `PATCH /v1/{account}/native/release-forms/rename` · 2 credit(s) ```bash curl -X PATCH \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/release-forms/rename" -d '{}' ``` ```python import requests r = requests.patch( "https://api.creator-api.com/v1/{account}/native/release-forms/rename", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/release-forms/rename", { method: "PATCH", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## saved-for-later-messages ### Disable automatic messaging [saved-for-later-messages] PATCH /users/me/settings/messages. `PATCH /v1/{account}/native/users/me/settings/messages` · 2 credit(s) ```bash curl -X PATCH \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/me/settings/messages" -d '{}' ``` ```python import requests r = requests.patch( "https://api.creator-api.com/v1/{account}/native/users/me/settings/messages", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/me/settings/messages", { method: "PATCH", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Enable disable welcome message [settings] PATCH /users/me/settings/messages. `PATCH /v1/{account}/native/users/me/settings/messages` · 2 credit(s) ```bash curl -X PATCH \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/me/settings/messages" -d '{}' ``` ```python import requests r = requests.patch( "https://api.creator-api.com/v1/{account}/native/users/me/settings/messages", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/me/settings/messages", { method: "PATCH", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Enable update automatic messaging [saved-for-later-messages] PATCH /users/me/settings/messages. `PATCH /v1/{account}/native/users/me/settings/messages` · 2 credit(s) ```bash curl -X PATCH \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/me/settings/messages" -d '{}' ``` ```python import requests r = requests.patch( "https://api.creator-api.com/v1/{account}/native/users/me/settings/messages", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/me/settings/messages", { method: "PATCH", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get message settings · ✅ live verified [saved-for-later-messages] GET /users/settings/chat. auto-reply settings `GET /v1/{account}/native/users/settings/chat` · 1 credit(s) · auto-reply settings ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/settings/chat?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/users/settings/chat?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/settings/chat?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get welcome message · ✅ live verified [settings] GET /messages/templates. `GET /v1/{account}/native/messages/templates` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/messages/templates?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/messages/templates?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/messages/templates?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List saved for later messages · ✅ live verified [saved-for-later-messages] GET /messages/templates. `GET /v1/{account}/native/messages/templates` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/messages/templates?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/messages/templates?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/messages/templates?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Update welcome message [settings] PATCH /users/me/settings/messages. `PATCH /v1/{account}/native/users/me/settings/messages` · 2 credit(s) ```bash curl -X PATCH \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/me/settings/messages" -d '{}' ``` ```python import requests r = requests.patch( "https://api.creator-api.com/v1/{account}/native/users/me/settings/messages", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/me/settings/messages", { method: "PATCH", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## saved-for-later-posts ### Disable automatic posting · ✅ live verified [saved-for-later-posts] PATCH /users/settings/post. `PATCH /v1/{account}/native/users/settings/post` · 2 credit(s) ```bash curl -X PATCH \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/settings/post" -d '{}' ``` ```python import requests r = requests.patch( "https://api.creator-api.com/v1/{account}/native/users/settings/post", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/settings/post", { method: "PATCH", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Enable update automatic posting · ✅ live verified [saved-for-later-posts] PATCH /users/settings/post. `PATCH /v1/{account}/native/users/settings/post` · 2 credit(s) ```bash curl -X PATCH \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/settings/post" -d '{}' ``` ```python import requests r = requests.patch( "https://api.creator-api.com/v1/{account}/native/users/settings/post", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/settings/post", { method: "PATCH", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get post settings · ✅ live verified [saved-for-later-posts] GET /users/settings/post. `GET /v1/{account}/native/users/settings/post` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/settings/post?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/users/settings/post?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/settings/post?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List saved for later posts · ✅ live verified [saved-for-later-posts] GET /posts/bookmarks/categories. bookmarked drafts `GET /v1/{account}/native/posts/bookmarks/categories` · 1 credit(s) · bookmarked drafts ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/posts/bookmarks/categories?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/posts/bookmarks/categories?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/posts/bookmarks/categories?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## settings ### Add social media button · ✅ live verified [settings] POST /users/social/buttons. `POST /v1/{account}/native/users/social/buttons` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/social/buttons" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/users/social/buttons", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/social/buttons", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Check username availability [settings] POST /users/exists. `POST /v1/{account}/native/users/exists` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/exists" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/users/exists", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/exists", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get blocked countries · ✅ live verified [settings] GET /users/me/settings. blockedCountries field `GET /v1/{account}/native/users/me/settings` · 1 credit(s) · exists as get_settings ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/me/settings?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/users/me/settings?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/me/settings?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get drm status · ✅ live verified [settings] GET /users/me/settings. drm field `GET /v1/{account}/native/users/me/settings` · 1 credit(s) · exists as get_settings ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/me/settings?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/users/me/settings?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/me/settings?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get settings · ✅ live verified [settings] GET /users/me/settings. exists as get_settings `GET /v1/{account}/native/users/me/settings` · 1 credit(s) · exists as get_settings ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/me/settings?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/users/me/settings?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/me/settings?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List social media buttons · ✅ live verified [settings] GET /users/social/buttons. `GET /v1/{account}/native/users/social/buttons` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/social/buttons?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/users/social/buttons?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/social/buttons?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Reorder social media buttons · ✅ live verified [settings] PUT /users/social/buttons. `PUT /v1/{account}/native/users/social/buttons` · 2 credit(s) ```bash curl -X PUT \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/social/buttons" -d '{}' ``` ```python import requests r = requests.put( "https://api.creator-api.com/v1/{account}/native/users/social/buttons", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/social/buttons", { method: "PUT", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## statistics ### Calculate total transactions · ✅ live verified [statistics] GET /payments/all/has-transactions. `GET /v1/{account}/native/payments/all/has-transactions` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payments/all/has-transactions?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/payments/all/has-transactions?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payments/all/has-transactions?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get earnings · ✅ live verified [statistics] GET /earnings/chart. `GET /v1/{account}/native/earnings/chart` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/earnings/chart?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/earnings/chart?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/earnings/chart?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get profile visitors · ✅ live verified [statistics] GET /users/me/profile/stats. `GET /v1/{account}/native/users/me/profile/stats` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/me/profile/stats?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/users/me/profile/stats?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/me/profile/stats?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get subscriber statistics · ✅ live verified [statistics] GET /subscriptions/count/all. `GET /v1/{account}/native/subscriptions/count/all` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscriptions/count/all?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/subscriptions/count/all?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/subscriptions/count/all?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## stories ### Add to story [stories] POST /stories. `POST /v1/{account}/native/stories` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/stories" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/stories", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/stories", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List active stories · ✅ live verified [stories] GET /users/me/stories. `GET /v1/{account}/native/users/me/stories` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/me/stories?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/users/me/stories?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/me/stories?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List story archive · ✅ live verified [stories] GET /stories/archive. `GET /v1/{account}/native/stories/archive` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/stories/archive?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/stories/archive?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/stories/archive?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## story-highlights ### Create story highlight [story-highlights] POST /stories/highlights. `POST /v1/{account}/native/stories/highlights` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/stories/highlights" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/stories/highlights", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/stories/highlights", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## subscription-bundles ### Create bundle · ✅ live verified [subscription-bundles] POST /subscriptions/bundles. `POST /v1/{account}/native/subscriptions/bundles` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscriptions/bundles" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/subscriptions/bundles", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/subscriptions/bundles", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List bundles · ✅ live verified [subscription-bundles] GET /subscriptions/bundles. `GET /v1/{account}/native/subscriptions/bundles` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscriptions/bundles?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/subscriptions/bundles?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/subscriptions/bundles?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## tracking-links ### Create tracking link · ✅ live verified [tracking-links] POST /campaigns. `POST /v1/{account}/native/campaigns` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/campaigns" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/campaigns", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/campaigns", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get tracking link cohort arps · ✅ live verified [tracking-links] GET /campaigns/chart. `GET /v1/{account}/native/campaigns/chart` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/campaigns/chart?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/campaigns/chart?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/campaigns/chart?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get tracking link stats · ✅ live verified [tracking-links] GET /campaigns/chart. `GET /v1/{account}/native/campaigns/chart` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/campaigns/chart?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/campaigns/chart?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/campaigns/chart?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List tracking links · ✅ live verified [tracking-links] GET /campaigns. `GET /v1/{account}/native/campaigns` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/campaigns?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/campaigns?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/campaigns?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## user-list-collections ### Add users to user list [user-list-collections] POST /lists/users. body {id:listId, users:[...]}; corrected (was /lists/{id}/users=404) `POST /v1/{account}/native/lists/users` · 2 credit(s) · body {id:listId, users:[...]}; corrected (was /lists/{id}/users=404) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/lists/users" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/lists/users", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/lists/users", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create user list · ✅ live verified [user-list-collections] POST /lists. `POST /v1/{account}/native/lists` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/lists" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/lists", headers={"X-API-Key": KEY}, ).json() print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/lists", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### List user lists · ✅ live verified [user-list-collections] GET /lists. `GET /v1/{account}/native/lists` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/lists?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/lists?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/lists?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## users ### Mass list user details [users] GET /users/list. 400 needs ids `GET /v1/{account}/native/users/list` · 1 credit(s) · 400 needs ids ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/users/list?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/users/list?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/users/list?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ===================== FANSLY REFERENCE ===================== # CreatorAPI · Fansly reference > Harvested from the live fansly.com SPA build (apiv3 surface). Reached through the CreatorAPI proxy · the 5 header Fansly signing is handled server side, you never touch it. Routes marked verified were probed live (HTTP 200); the rest are harvested, verify on first call. **345 capabilities** · 94 live verified · 206 writes · 87 groups. ## How every call works All native Fansly routes are reached through one pattern: ``` {METHOD} https://api.creator-api.com/v1/{account}/native/{native_path} ``` `{account}` is the connected Fansly account id. Auth header `X-API-Key: `. GET is read only; writes need a full scope key. Billing: read = 1 credit, write = 2 credits. Note: the path is the apiv3 route without the `/api/v1` prefix (the proxy adds it). Media upload runs over a separate gateway and is a guided multi step flow. ## Fansly response notes * Envelope: every response is unwrapped for you · you receive the inner object directly. * Money: wallet and earnings amounts are in mills (thousandths of a dollar). Divide by 1000 for USD, not by 100. * Fansly fee: net = 0.80 * gross (Fansly keeps 20 percent). `totalNet` is the payout, `totalGross` is what the fan paid. * Earnings stat type codes (from the creator dashboard): tips 7001/7101 · subscriptions 15001 · single PPV media 2010/2110 · media sets 2016/2116 · locked text (paid DMs) 32001/32101 · affiliates 18001 · stream tickets 45001/45101 · leaderboard prizes 24101. ## account ### Get account `GET /v1/{account}/native/account` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/account?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create account `POST /v1/{account}/native/account` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/account", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create account disable `POST /v1/{account}/native/account/disable` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/disable" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/account/disable", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/disable", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create account emailchange create `POST /v1/{account}/native/account/emailchange/create` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/emailchange/create" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/account/emailchange/create", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/emailchange/create", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create account emailchange finish `POST /v1/{account}/native/account/emailchange/finish` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/emailchange/finish" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/account/emailchange/finish", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/emailchange/finish", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create account emailchange verify `POST /v1/{account}/native/account/emailchange/verify` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/emailchange/verify" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/account/emailchange/verify", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/emailchange/verify", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create account ignore `POST /v1/{account}/native/account/ignore` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/ignore" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/account/ignore", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/ignore", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create account ignore location `POST /v1/{account}/native/account/ignore/location` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/ignore/location" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/account/ignore/location", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/ignore/location", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create account ignore location delete `POST /v1/{account}/native/account/ignore/location/delete` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/ignore/location/delete" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/account/ignore/location/delete", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/ignore/location/delete", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get account ignore locations · verified `GET /v1/{account}/native/account/ignore/locations` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/ignore/locations?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/account/ignore/locations?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/ignore/locations?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get account me · verified `GET /v1/{account}/native/account/me` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/me?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/account/me?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/me?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get account media · verified `GET /v1/{account}/native/account/media` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/media?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/account/media?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/media?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create account media `POST /v1/{account}/native/account/media` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/media" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/account/media", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/media", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get account media bundle · verified `GET /v1/{account}/native/account/media/bundle` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/media/bundle?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/account/media/bundle?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/media/bundle?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create account media bundle `POST /v1/{account}/native/account/media/bundle` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/media/bundle" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/account/media/bundle", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/media/bundle", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create account media bundle permissions `POST /v1/{account}/native/account/media/bundle/permissions` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/media/bundle/permissions" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/account/media/bundle/permissions", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/media/bundle/permissions", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create account media edit `POST /v1/{account}/native/account/media/edit` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/media/edit" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/account/media/edit", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/media/edit", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get account media orders · verified `GET /v1/{account}/native/account/media/orders` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/media/orders?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/account/media/orders?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/media/orders?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create account media permissions `POST /v1/{account}/native/account/media/permissions` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/media/permissions" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/account/media/permissions", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/media/permissions", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get account search `GET /v1/{account}/native/account/search` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/search?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/account/search?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/search?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get account searchnew `GET /v1/{account}/native/account/searchnew` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/searchnew?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/account/searchnew?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/searchnew?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get account settings · verified `GET /v1/{account}/native/account/settings` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/settings?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/account/settings?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/settings?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create account settings `POST /v1/{account}/native/account/settings` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/settings" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/account/settings", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/settings", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get account tipgoals · verified `GET /v1/{account}/native/account/tipgoals` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/tipgoals?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/account/tipgoals?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/tipgoals?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create account username `POST /v1/{account}/native/account/username` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/username" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/account/username", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/username", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get account verifynsfw · verified `GET /v1/{account}/native/account/verifynsfw` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/verifynsfw?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/account/verifynsfw?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/verifynsfw?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get account wallets earnings · verified `GET /v1/{account}/native/account/wallets/earnings` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/wallets/earnings?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/account/wallets/earnings?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/wallets/earnings?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get account wallets earnings accounts · verified `GET /v1/{account}/native/account/wallets/earnings/accounts` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/wallets/earnings/accounts?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/account/wallets/earnings/accounts?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/wallets/earnings/accounts?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get account wallets earnings monthlystats · verified `GET /v1/{account}/native/account/wallets/earnings/monthlystats` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/wallets/earnings/monthlystats?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/account/wallets/earnings/monthlystats?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/wallets/earnings/monthlystats?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get account wallets earnings monthlystats accounts · verified `GET /v1/{account}/native/account/wallets/earnings/monthlystats/accounts` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/wallets/earnings/monthlystats/accounts?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/account/wallets/earnings/monthlystats/accounts?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/wallets/earnings/monthlystats/accounts?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get account wallets earnings stats · verified `GET /v1/{account}/native/account/wallets/earnings/stats` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/wallets/earnings/stats?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/account/wallets/earnings/stats?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/wallets/earnings/stats?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get account wallets earnings stats accounts · verified `GET /v1/{account}/native/account/wallets/earnings/stats/accounts` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/wallets/earnings/stats/accounts?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/account/wallets/earnings/stats/accounts?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/wallets/earnings/stats/accounts?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get account wallets earnings transactions · verified `GET /v1/{account}/native/account/wallets/earnings/transactions` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/wallets/earnings/transactions?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/account/wallets/earnings/transactions?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/wallets/earnings/transactions?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create account wallets transaction refund `POST /v1/{account}/native/account/wallets/transaction/refund` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/wallets/transaction/refund" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/account/wallets/transaction/refund", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/wallets/transaction/refund", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get account wallets transactions · verified `GET /v1/{account}/native/account/wallets/transactions` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/wallets/transactions?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/account/wallets/transactions?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/wallets/transactions?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get account walls · verified `GET /v1/{account}/native/account/walls` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/walls?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/account/walls?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/walls?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get account wallets `GET /v1/{account}/native/account/{id}/wallets` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/account/{id}/wallets?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/account/{id}/wallets?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/{id}/wallets?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## addCoPerformer ### Create addCoPerformer v1 `POST /v1/{account}/native/addCoPerformer/v1` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/addCoPerformer/v1" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/addCoPerformer/v1", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/addCoPerformer/v1", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## archiveCoPerformer ### Create archiveCoPerformer v1 `POST /v1/{account}/native/archiveCoPerformer/v1` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/archiveCoPerformer/v1" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/archiveCoPerformer/v1", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/archiveCoPerformer/v1", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## certificate ### Create certificate challenge v1 `POST /v1/{account}/native/certificate/challenge/v1` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/certificate/challenge/v1" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/certificate/challenge/v1", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/certificate/challenge/v1", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## chatroom ### Create chatroom `POST /v1/{account}/native/chatroom` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chatroom" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/chatroom", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chatroom", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get chatroom chatters · verified `GET /v1/{account}/native/chatroom/chatters` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chatroom/chatters?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/chatroom/chatters?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chatroom/chatters?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get chatroom goal tips `GET /v1/{account}/native/chatroom/goal/tips` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chatroom/goal/tips?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/chatroom/goal/tips?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chatroom/goal/tips?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create chatroom goal update `POST /v1/{account}/native/chatroom/goal/update` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chatroom/goal/update" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/chatroom/goal/update", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chatroom/goal/update", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get chatroom goals · verified `GET /v1/{account}/native/chatroom/goals` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chatroom/goals?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/chatroom/goals?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chatroom/goals?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create chatroom goals `POST /v1/{account}/native/chatroom/goals` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chatroom/goals" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/chatroom/goals", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chatroom/goals", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create chatroom message `POST /v1/{account}/native/chatroom/message` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chatroom/message" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/chatroom/message", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chatroom/message", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get chatroom messages `GET /v1/{account}/native/chatroom/messages` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chatroom/messages?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/chatroom/messages?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chatroom/messages?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create chatroom moderation `POST /v1/{account}/native/chatroom/moderation` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chatroom/moderation" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/chatroom/moderation", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chatroom/moderation", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create chatroom permissionflags `POST /v1/{account}/native/chatroom/permissionflags` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chatroom/permissionflags" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/chatroom/permissionflags", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chatroom/permissionflags", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create chatroom subalert `POST /v1/{account}/native/chatroom/subalert` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chatroom/subalert" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/chatroom/subalert", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chatroom/subalert", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create chatroom update `POST /v1/{account}/native/chatroom/update` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chatroom/update" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/chatroom/update", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chatroom/update", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## chatrooms ### Get chatrooms · verified `GET /v1/{account}/native/chatrooms` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chatrooms?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/chatrooms?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chatrooms?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get chatrooms settings · verified `GET /v1/{account}/native/chatrooms/settings` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chatrooms/settings?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/chatrooms/settings?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chatrooms/settings?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create chatrooms settings `POST /v1/{account}/native/chatrooms/settings` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/chatrooms/settings" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/chatrooms/settings", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/chatrooms/settings", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## commit ### Create commit v1 `POST /v1/{account}/native/commit/v1` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/commit/v1" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/commit/v1", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/commit/v1", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## contentdiscovery ### Get contentdiscovery content · verified `GET /v1/{account}/native/contentdiscovery/content` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/contentdiscovery/content?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/contentdiscovery/content?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/contentdiscovery/content?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create contentdiscovery content `POST /v1/{account}/native/contentdiscovery/content` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/contentdiscovery/content" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/contentdiscovery/content", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/contentdiscovery/content", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create contentdiscovery content delete `POST /v1/{account}/native/contentdiscovery/content/delete` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/contentdiscovery/content/delete" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/contentdiscovery/content/delete", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/contentdiscovery/content/delete", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get contentdiscovery labels · verified `GET /v1/{account}/native/contentdiscovery/labels` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/contentdiscovery/labels?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/contentdiscovery/labels?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/contentdiscovery/labels?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get contentdiscovery livesuggestions · verified `GET /v1/{account}/native/contentdiscovery/livesuggestions` · 1 credit(s) Params: `limit,offset` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/contentdiscovery/livesuggestions?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/contentdiscovery/livesuggestions?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/contentdiscovery/livesuggestions?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get contentdiscovery media explore · verified `GET /v1/{account}/native/contentdiscovery/media/explore` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/contentdiscovery/media/explore?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/contentdiscovery/media/explore?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/contentdiscovery/media/explore?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get contentdiscovery media similar `GET /v1/{account}/native/contentdiscovery/media/similar` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/contentdiscovery/media/similar?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/contentdiscovery/media/similar?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/contentdiscovery/media/similar?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get contentdiscovery media suggestions · verified `GET /v1/{account}/native/contentdiscovery/media/suggestions` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/contentdiscovery/media/suggestions?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/contentdiscovery/media/suggestions?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/contentdiscovery/media/suggestions?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get contentdiscovery media suggestionsnew · verified `GET /v1/{account}/native/contentdiscovery/media/suggestionsnew` · 1 credit(s) Params: `after,before,limit,offset` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/contentdiscovery/media/suggestionsnew?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/contentdiscovery/media/suggestionsnew?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/contentdiscovery/media/suggestionsnew?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get contentdiscovery media tag · verified `GET /v1/{account}/native/contentdiscovery/media/tag` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/contentdiscovery/media/tag?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/contentdiscovery/media/tag?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/contentdiscovery/media/tag?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get contentdiscovery media tags discover · verified `GET /v1/{account}/native/contentdiscovery/media/tags/discover` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/contentdiscovery/media/tags/discover?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/contentdiscovery/media/tags/discover?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/contentdiscovery/media/tags/discover?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get contentdiscovery preferences · verified `GET /v1/{account}/native/contentdiscovery/preferences` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/contentdiscovery/preferences?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/contentdiscovery/preferences?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/contentdiscovery/preferences?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create contentdiscovery preferences `POST /v1/{account}/native/contentdiscovery/preferences` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/contentdiscovery/preferences" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/contentdiscovery/preferences", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/contentdiscovery/preferences", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create contentdiscovery preferences delete `POST /v1/{account}/native/contentdiscovery/preferences/delete` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/contentdiscovery/preferences/delete" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/contentdiscovery/preferences/delete", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/contentdiscovery/preferences/delete", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get contentdiscovery promo eventgiftcodes `GET /v1/{account}/native/contentdiscovery/promo/eventgiftcodes` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/contentdiscovery/promo/eventgiftcodes?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/contentdiscovery/promo/eventgiftcodes?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/contentdiscovery/promo/eventgiftcodes?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get contentdiscovery promo giftcodes · verified `GET /v1/{account}/native/contentdiscovery/promo/giftcodes` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/contentdiscovery/promo/giftcodes?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/contentdiscovery/promo/giftcodes?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/contentdiscovery/promo/giftcodes?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get contentdiscovery suggestions · verified `GET /v1/{account}/native/contentdiscovery/suggestions` · 1 credit(s) Params: `limit,offset` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/contentdiscovery/suggestions?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/contentdiscovery/suggestions?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/contentdiscovery/suggestions?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create contentdiscovery suggestions accountinfo `POST /v1/{account}/native/contentdiscovery/suggestions/accountinfo` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/contentdiscovery/suggestions/accountinfo" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/contentdiscovery/suggestions/accountinfo", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/contentdiscovery/suggestions/accountinfo", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create contentdiscovery suggestions views `POST /v1/{account}/native/contentdiscovery/suggestions/views` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/contentdiscovery/suggestions/views" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/contentdiscovery/suggestions/views", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/contentdiscovery/suggestions/views", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get contentdiscovery tags · verified `GET /v1/{account}/native/contentdiscovery/tags` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/contentdiscovery/tags?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/contentdiscovery/tags?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/contentdiscovery/tags?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create contentdiscovery tags `POST /v1/{account}/native/contentdiscovery/tags` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/contentdiscovery/tags" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/contentdiscovery/tags", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/contentdiscovery/tags", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create contentdiscovery tags delete `POST /v1/{account}/native/contentdiscovery/tags/delete` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/contentdiscovery/tags/delete" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/contentdiscovery/tags/delete", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/contentdiscovery/tags/delete", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## createSignRequest ### Create createSignRequest v1 `POST /v1/{account}/native/createSignRequest/v1` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/createSignRequest/v1" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/createSignRequest/v1", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/createSignRequest/v1", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## device ### Get device id · verified `GET /v1/{account}/native/device/id` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/device/id?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/device/id?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/device/id?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## emails ### Get emails unsubscribe `GET /v1/{account}/native/emails/unsubscribe` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/emails/unsubscribe?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/emails/unsubscribe?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/emails/unsubscribe?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## enroll ### Create enroll v1 `POST /v1/{account}/native/enroll/v1` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/enroll/v1" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/enroll/v1", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/enroll/v1", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## geolocation ### Get geolocation subdivisions · verified `GET /v1/{account}/native/geolocation/subdivisions` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/geolocation/subdivisions?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/geolocation/subdivisions?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/geolocation/subdivisions?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## getCurrentLeaderboard ### Get getCurrentLeaderboard v1 `GET /v1/{account}/native/getCurrentLeaderboard/v1` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/getCurrentLeaderboard/v1?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/getCurrentLeaderboard/v1?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/getCurrentLeaderboard/v1?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## getStatus ### Get getStatus v1 `GET /v1/{account}/native/getStatus/v1` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/getStatus/v1?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/getStatus/v1?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/getStatus/v1?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## group ### Get group `GET /v1/{account}/native/group` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/group?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/group?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/group?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create group `POST /v1/{account}/native/group` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/group" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/group", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/group", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## groups ### Get groups dmpermissionflags · verified `GET /v1/{account}/native/groups/dmpermissionflags` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/groups/dmpermissionflags?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/groups/dmpermissionflags?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/groups/dmpermissionflags?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create groups dmpermissionflags `POST /v1/{account}/native/groups/dmpermissionflags` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/groups/dmpermissionflags" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/groups/dmpermissionflags", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/groups/dmpermissionflags", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get groups mediaoffers `GET /v1/{account}/native/groups/mediaoffers` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/groups/mediaoffers?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/groups/mediaoffers?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/groups/mediaoffers?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create groups users delete `POST /v1/{account}/native/groups/users/delete` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/groups/users/delete" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/groups/users/delete", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/groups/users/delete", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create groups users readreceipts `POST /v1/{account}/native/groups/users/readreceipts` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/groups/users/readreceipts" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/groups/users/readreceipts", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/groups/users/readreceipts", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create groups users settings `POST /v1/{account}/native/groups/users/settings` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/groups/users/settings" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/groups/users/settings", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/groups/users/settings", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## idv ### Create idv `POST /v1/{account}/native/idv` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/idv" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/idv", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/idv", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get idv accountsessions `GET /v1/{account}/native/idv/accountsessions` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/idv/accountsessions?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/idv/accountsessions?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/idv/accountsessions?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## ignore ### Get ignore · verified `GET /v1/{account}/native/ignore` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/ignore?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/ignore?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/ignore?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## intercom ### Get intercom authorize · verified `GET /v1/{account}/native/intercom/authorize` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/intercom/authorize?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/intercom/authorize?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/intercom/authorize?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## it ### Create it fyp `POST /v1/{account}/native/it/fyp` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/it/fyp" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/it/fyp", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/it/fyp", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create it mis `POST /v1/{account}/native/it/mis` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/it/mis" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/it/mis", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/it/mis", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get it moie stats `GET /v1/{account}/native/it/moie/stats` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/it/moie/stats?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/it/moie/stats?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/it/moie/stats?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get it moie statsnew `GET /v1/{account}/native/it/moie/statsnew` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/it/moie/statsnew?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/it/moie/statsnew?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/it/moie/statsnew?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create it mois `POST /v1/{account}/native/it/mois` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/it/mois" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/it/mois", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/it/mois", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create it pis `POST /v1/{account}/native/it/pis` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/it/pis" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/it/pis", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/it/pis", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## likes ### Create likes `POST /v1/{account}/native/likes` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/likes" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/likes", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/likes", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create likes remove `POST /v1/{account}/native/likes/remove` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/likes/remove" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/likes/remove", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/likes/remove", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## list ### Get list v1 `GET /v1/{account}/native/list/v1` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/list/v1?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/list/v1?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/list/v1?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## lists ### Create lists `POST /v1/{account}/native/lists` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/lists" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/lists", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/lists", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get lists account · verified `GET /v1/{account}/native/lists/account` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/lists/account?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/lists/account?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/lists/account?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create lists aggregate add `POST /v1/{account}/native/lists/aggregate/add` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/lists/aggregate/add" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/lists/aggregate/add", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/lists/aggregate/add", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create lists commands `POST /v1/{account}/native/lists/commands` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/lists/commands" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/lists/commands", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/lists/commands", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create lists edit `POST /v1/{account}/native/lists/edit` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/lists/edit" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/lists/edit", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/lists/edit", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create lists items add `POST /v1/{account}/native/lists/items/add` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/lists/items/add" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/lists/items/add", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/lists/items/add", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create lists items remove `POST /v1/{account}/native/lists/items/remove` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/lists/items/remove" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/lists/items/remove", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/lists/items/remove", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create lists order `POST /v1/{account}/native/lists/order` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/lists/order" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/lists/order", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/lists/order", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create lists remove `POST /v1/{account}/native/lists/remove` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/lists/remove" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/lists/remove", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/lists/remove", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## login ### Create login `POST /v1/{account}/native/login` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/login" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/login", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/login", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create login email `POST /v1/{account}/native/login/email` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/login/email" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/login/email", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/login/email", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create login email verification `POST /v1/{account}/native/login/email/verification` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/login/email/verification" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/login/email/verification", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/login/email/verification", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create login email verification token `POST /v1/{account}/native/login/email/verification/token` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/login/email/verification/token" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/login/email/verification/token", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/login/email/verification/token", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create login email verify `POST /v1/{account}/native/login/email/verify` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/login/email/verify" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/login/email/verify", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/login/email/verify", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create login password `POST /v1/{account}/native/login/password` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/login/password" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/login/password", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/login/password", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create login password create `POST /v1/{account}/native/login/password/create` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/login/password/create" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/login/password/create", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/login/password/create", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create login password reset `POST /v1/{account}/native/login/password/reset` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/login/password/reset" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/login/password/reset", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/login/password/reset", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create login password reset verify `POST /v1/{account}/native/login/password/reset/verify` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/login/password/reset/verify" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/login/password/reset/verify", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/login/password/reset/verify", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get login password status · verified `GET /v1/{account}/native/login/password/status` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/login/password/status?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/login/password/status?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/login/password/status?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create login twofa `POST /v1/{account}/native/login/twofa` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/login/twofa" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/login/twofa", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/login/twofa", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## management ### Create management `POST /v1/{account}/native/management` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/management" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/management", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/management", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create management managementsession `POST /v1/{account}/native/management/managementsession` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/management/managementsession" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/management/managementsession", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/management/managementsession", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create management managementsession claim `POST /v1/{account}/native/management/managementsession/claim` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/management/managementsession/claim" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/management/managementsession/claim", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/management/managementsession/claim", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create management managementsession remove `POST /v1/{account}/native/management/managementsession/remove` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/management/managementsession/remove" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/management/managementsession/remove", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/management/managementsession/remove", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create management managementsession update `POST /v1/{account}/native/management/managementsession/update` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/management/managementsession/update" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/management/managementsession/update", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/management/managementsession/update", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get management managementsessions · verified `GET /v1/{account}/native/management/managementsessions` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/management/managementsessions?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/management/managementsessions?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/management/managementsessions?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create management manageradd `POST /v1/{account}/native/management/manageradd` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/management/manageradd" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/management/manageradd", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/management/manageradd", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create management managerdelete `POST /v1/{account}/native/management/managerdelete` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/management/managerdelete" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/management/managerdelete", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/management/managerdelete", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get management managers · verified `GET /v1/{account}/native/management/managers` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/management/managers?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/management/managers?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/management/managers?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## media ### Get media `GET /v1/{account}/native/media` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/media?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/media?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/media?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create media `POST /v1/{account}/native/media` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/media" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/media", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/media", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create media bundle `POST /v1/{account}/native/media/bundle` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/media/bundle" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/media/bundle", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/media/bundle", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create media cover `POST /v1/{account}/native/media/cover` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/media/cover" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/media/cover", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/media/cover", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get media vault · verified `GET /v1/{account}/native/media/vault` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/media/vault?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/media/vault?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/media/vault?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get media vaultnew `GET /v1/{account}/native/media/vaultnew` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/media/vaultnew?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/media/vaultnew?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/media/vaultnew?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get media watermark · verified `GET /v1/{account}/native/media/watermark` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/media/watermark?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/media/watermark?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/media/watermark?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create media watermark `POST /v1/{account}/native/media/watermark` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/media/watermark" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/media/watermark", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/media/watermark", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## mediaoffers ### Get mediaoffers location `GET /v1/{account}/native/mediaoffers/location` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/mediaoffers/location?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/mediaoffers/location?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/mediaoffers/location?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get mediaoffers location deleted `GET /v1/{account}/native/mediaoffers/location/deleted` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/mediaoffers/location/deleted?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/mediaoffers/location/deleted?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/mediaoffers/location/deleted?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get mediaoffers mediaoffers `GET /v1/{account}/native/mediaoffers/mediaoffers` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/mediaoffers/mediaoffers?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/mediaoffers/mediaoffers?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/mediaoffers/mediaoffers?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## mediastories ### Get mediastories · verified `GET /v1/{account}/native/mediastories` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/mediastories?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/mediastories?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/mediastories?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create mediastories `POST /v1/{account}/native/mediastories` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/mediastories" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/mediastories", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/mediastories", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get mediastories following · verified `GET /v1/{account}/native/mediastories/following` · 1 credit(s) Params: `limit,offset` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/mediastories/following?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/mediastories/following?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/mediastories/following?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## mediastoriesnew ### Get mediastoriesnew · verified `GET /v1/{account}/native/mediastoriesnew` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/mediastoriesnew?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/mediastoriesnew?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/mediastoriesnew?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## mediastory ### Create mediastory delete `POST /v1/{account}/native/mediastory/delete` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/mediastory/delete" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/mediastory/delete", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/mediastory/delete", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create mediastory view `POST /v1/{account}/native/mediastory/view` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/mediastory/view" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/mediastory/view", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/mediastory/view", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get mediastory views `GET /v1/{account}/native/mediastory/views` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/mediastory/views?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/mediastory/views?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/mediastory/views?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## message ### Get message `GET /v1/{account}/native/message` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/message?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/message?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/message?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create message `POST /v1/{account}/native/message` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/message" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/message", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/message", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create message ack `POST /v1/{account}/native/message/ack` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/message/ack" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/message/ack", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/message/ack", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create message ack all `POST /v1/{account}/native/message/ack/all` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/message/ack/all" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/message/ack/all", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/message/ack/all", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get message automated · verified `GET /v1/{account}/native/message/automated` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/message/automated?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/message/automated?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/message/automated?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create message automated `POST /v1/{account}/native/message/automated` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/message/automated" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/message/automated", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/message/automated", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create message automated edit `POST /v1/{account}/native/message/automated/edit` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/message/automated/edit" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/message/automated/edit", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/message/automated/edit", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create message broadcast `POST /v1/{account}/native/message/broadcast` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/message/broadcast" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/message/broadcast", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/message/broadcast", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get message broadcast scheduled · verified `GET /v1/{account}/native/message/broadcast/scheduled` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/message/broadcast/scheduled?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/message/broadcast/scheduled?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/message/broadcast/scheduled?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create message broadcast scheduled `POST /v1/{account}/native/message/broadcast/scheduled` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/message/broadcast/scheduled" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/message/broadcast/scheduled", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/message/broadcast/scheduled", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get message broadcast stats · verified `GET /v1/{account}/native/message/broadcast/stats` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/message/broadcast/stats?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/message/broadcast/stats?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/message/broadcast/stats?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get message broadcast stats deleted · verified `GET /v1/{account}/native/message/broadcast/stats/deleted` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/message/broadcast/stats/deleted?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/message/broadcast/stats/deleted?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/message/broadcast/stats/deleted?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create message delete `POST /v1/{account}/native/message/delete` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/message/delete" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/message/delete", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/message/delete", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create message like `POST /v1/{account}/native/message/like` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/message/like" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/message/like", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/message/like", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create message like remove `POST /v1/{account}/native/message/like/remove` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/message/like/remove" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/message/like/remove", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/message/like/remove", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create message typing `POST /v1/{account}/native/message/typing` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/message/typing" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/message/typing", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/message/typing", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get message undelivered · verified `GET /v1/{account}/native/message/undelivered` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/message/undelivered?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/message/undelivered?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/message/undelivered?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get message unread · verified `GET /v1/{account}/native/message/unread` · 1 credit(s) Params: `before,limit,offset` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/message/unread?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/message/unread?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/message/unread?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## messages ### Get messages `GET /v1/{account}/native/messages` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/messages?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/messages?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/messages?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## messaging ### Get messaging groups · verified `GET /v1/{account}/native/messaging/groups` · 1 credit(s) Params: `flags,limit,offset,sortOrder` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/messaging/groups?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/messaging/groups?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/messaging/groups?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## model ### Get model application `GET /v1/{account}/native/model/application` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/model/application?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/model/application?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/model/application?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create model application `POST /v1/{account}/native/model/application` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/model/application" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/model/application", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/model/application", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get model applications · verified `GET /v1/{account}/native/model/applications` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/model/applications?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/model/applications?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/model/applications?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## notes ### Create notes `POST /v1/{account}/native/notes` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/notes" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/notes", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/notes", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create notes delete `POST /v1/{account}/native/notes/delete` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/notes/delete" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/notes/delete", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/notes/delete", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create notes edit `POST /v1/{account}/native/notes/edit` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/notes/edit" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/notes/edit", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/notes/edit", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## notifications ### Get notifications · verified `GET /v1/{account}/native/notifications` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/notifications?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/notifications?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/notifications?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create notifications ack `POST /v1/{account}/native/notifications/ack` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/notifications/ack" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/notifications/ack", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/notifications/ack", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get notifications alertsettings · verified `GET /v1/{account}/native/notifications/alertsettings` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/notifications/alertsettings?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/notifications/alertsettings?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/notifications/alertsettings?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create notifications alertsettings `POST /v1/{account}/native/notifications/alertsettings` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/notifications/alertsettings" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/notifications/alertsettings", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/notifications/alertsettings", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create notifications custom `POST /v1/{account}/native/notifications/custom` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/notifications/custom" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/notifications/custom", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/notifications/custom", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create notifications emailalerts unsubscribe `POST /v1/{account}/native/notifications/emailalerts/unsubscribe` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/notifications/emailalerts/unsubscribe" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/notifications/emailalerts/unsubscribe", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/notifications/emailalerts/unsubscribe", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get notifications unack · verified `GET /v1/{account}/native/notifications/unack` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/notifications/unack?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/notifications/unack?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/notifications/unack?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## optOut ### Create optOut v1 `POST /v1/{account}/native/optOut/v1` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/optOut/v1" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/optOut/v1", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/optOut/v1", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## orders ### Create orders `POST /v1/{account}/native/orders` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/orders" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/orders", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/orders", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get orders products · verified `GET /v1/{account}/native/orders/products` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/orders/products?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/orders/products?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/orders/products?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## payments ### Get payments `GET /v1/{account}/native/payments` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payments?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/payments?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payments?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get payments deposits crypto address `GET /v1/{account}/native/payments/deposits/crypto/address` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payments/deposits/crypto/address?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/payments/deposits/crypto/address?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payments/deposits/crypto/address?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create payments payout `POST /v1/{account}/native/payments/payout` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payments/payout" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/payments/payout", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payments/payout", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get payments payout requests · verified `GET /v1/{account}/native/payments/payout/requests` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payments/payout/requests?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/payments/payout/requests?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payments/payout/requests?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create payments payoutmethod `POST /v1/{account}/native/payments/payoutmethod` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payments/payoutmethod" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/payments/payoutmethod", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payments/payoutmethod", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create payments payoutmethod delete `POST /v1/{account}/native/payments/payoutmethod/delete` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payments/payoutmethod/delete" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/payments/payoutmethod/delete", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payments/payoutmethod/delete", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get payments payoutmethods · verified `GET /v1/{account}/native/payments/payoutmethods` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payments/payoutmethods?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/payments/payoutmethods?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payments/payoutmethods?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get payments wallets · verified `GET /v1/{account}/native/payments/wallets` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payments/wallets?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/payments/wallets?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payments/wallets?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create payments wallets `POST /v1/{account}/native/payments/wallets` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payments/wallets" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/payments/wallets", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payments/wallets", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create payments wallets approve `POST /v1/{account}/native/payments/wallets/approve` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payments/wallets/approve" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/payments/wallets/approve", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payments/wallets/approve", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create payments wallets default `POST /v1/{account}/native/payments/wallets/default` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payments/wallets/default" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/payments/wallets/default", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payments/wallets/default", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create payments wallets delete `POST /v1/{account}/native/payments/wallets/delete` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payments/wallets/delete" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/payments/wallets/delete", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payments/wallets/delete", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get payments wallets transactions · verified `GET /v1/{account}/native/payments/wallets/transactions` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payments/wallets/transactions?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/payments/wallets/transactions?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payments/wallets/transactions?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create payments wallets transactions `POST /v1/{account}/native/payments/wallets/transactions` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payments/wallets/transactions" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/payments/wallets/transactions", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payments/wallets/transactions", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## payouts ### Get payouts documentation · verified `GET /v1/{account}/native/payouts/documentation` · 1 credit(s) Params: `type` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payouts/documentation?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/payouts/documentation?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payouts/documentation?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create payouts documentation `POST /v1/{account}/native/payouts/documentation` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payouts/documentation" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/payouts/documentation", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payouts/documentation", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create payouts method `POST /v1/{account}/native/payouts/method` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payouts/method" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/payouts/method", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payouts/method", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create payouts method update `POST /v1/{account}/native/payouts/method/update` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/payouts/method/update" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/payouts/method/update", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/payouts/method/update", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## pii ### Create pii reveal challenge v1 `POST /v1/{account}/native/pii/reveal/challenge/v1` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/pii/reveal/challenge/v1" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/pii/reveal/challenge/v1", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/pii/reveal/challenge/v1", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create pii reveal v1 `POST /v1/{account}/native/pii/reveal/v1` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/pii/reveal/v1" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/pii/reveal/v1", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/pii/reveal/v1", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get pii selfie v1 `GET /v1/{account}/native/pii/selfie/v1` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/pii/selfie/v1?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/pii/selfie/v1?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/pii/selfie/v1?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## poll ### Create poll `POST /v1/{account}/native/poll` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/poll" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/poll", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/poll", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create poll subscribe `POST /v1/{account}/native/poll/subscribe` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/poll/subscribe" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/poll/subscribe", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/poll/subscribe", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create poll unsubscribe `POST /v1/{account}/native/poll/unsubscribe` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/poll/unsubscribe" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/poll/unsubscribe", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/poll/unsubscribe", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create poll vote `POST /v1/{account}/native/poll/vote` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/poll/vote" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/poll/vote", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/poll/vote", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## polls ### Get polls · verified `GET /v1/{account}/native/polls` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/polls?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/polls?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/polls?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## post ### Get post `GET /v1/{account}/native/post` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/post?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/post?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/post?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create post `POST /v1/{account}/native/post` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/post" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/post", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/post", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get post scheduled · verified `GET /v1/{account}/native/post/scheduled` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/post/scheduled?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/post/scheduled?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/post/scheduled?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create post scheduled `POST /v1/{account}/native/post/scheduled` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/post/scheduled" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/post/scheduled", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/post/scheduled", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## postreply ### Create postreply verify `POST /v1/{account}/native/postreply/verify` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/postreply/verify" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/postreply/verify", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/postreply/verify", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## productorders ### Create productorders `POST /v1/{account}/native/productorders` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/productorders" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/productorders", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/productorders", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## profile ### Create profile `POST /v1/{account}/native/profile` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/profile" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/profile", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/profile", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create profile application `POST /v1/{account}/native/profile/application` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/profile/application" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/profile/application", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/profile/application", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create profile picture `POST /v1/{account}/native/profile/picture` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/profile/picture" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/profile/picture", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/profile/picture", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create profile pinned `POST /v1/{account}/native/profile/pinned` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/profile/pinned" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/profile/pinned", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/profile/pinned", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create profile pinned remove `POST /v1/{account}/native/profile/pinned/remove` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/profile/pinned/remove" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/profile/pinned/remove", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/profile/pinned/remove", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create profile pinned update `POST /v1/{account}/native/profile/pinned/update` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/profile/pinned/update" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/profile/pinned/update", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/profile/pinned/update", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create profile social remove `POST /v1/{account}/native/profile/social/remove` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/profile/social/remove" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/profile/social/remove", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/profile/social/remove", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get profile socials · verified `GET /v1/{account}/native/profile/socials` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/profile/socials?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/profile/socials?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/profile/socials?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create profile socials `POST /v1/{account}/native/profile/socials` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/profile/socials" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/profile/socials", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/profile/socials", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## recapstats ### Get recapstats · verified `GET /v1/{account}/native/recapstats` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/recapstats?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/recapstats?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/recapstats?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## referals ### Get referals code · verified `GET /v1/{account}/native/referals/code` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/referals/code?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/referals/code?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/referals/code?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create referals code `POST /v1/{account}/native/referals/code` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/referals/code" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/referals/code", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/referals/code", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create referals code create `POST /v1/{account}/native/referals/code/create` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/referals/code/create" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/referals/code/create", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/referals/code/create", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get referals stats · verified `GET /v1/{account}/native/referals/stats` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/referals/stats?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/referals/stats?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/referals/stats?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## register ### Create register `POST /v1/{account}/native/register` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/register" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/register", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/register", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## registernew ### Create registernew `POST /v1/{account}/native/registernew` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/registernew" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/registernew", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/registernew", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## reports ### Create reports `POST /v1/{account}/native/reports` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/reports" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/reports", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/reports", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## requestCoPerformer ### Create requestCoPerformer v1 `POST /v1/{account}/native/requestCoPerformer/v1` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/requestCoPerformer/v1" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/requestCoPerformer/v1", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/requestCoPerformer/v1", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## requests ### Create requests accept v1 `POST /v1/{account}/native/requests/accept/v1` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/requests/accept/v1" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/requests/accept/v1", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/requests/accept/v1", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create requests cancel v1 `POST /v1/{account}/native/requests/cancel/v1` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/requests/cancel/v1" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/requests/cancel/v1", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/requests/cancel/v1", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get requests count v1 `GET /v1/{account}/native/requests/count/v1` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/requests/count/v1?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/requests/count/v1?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/requests/count/v1?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create requests decline v1 `POST /v1/{account}/native/requests/decline/v1` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/requests/decline/v1" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/requests/decline/v1", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/requests/decline/v1", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get requests list v1 `GET /v1/{account}/native/requests/list/v1` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/requests/list/v1?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/requests/list/v1?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/requests/list/v1?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create requests report v1 `POST /v1/{account}/native/requests/report/v1` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/requests/report/v1" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/requests/report/v1", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/requests/report/v1", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create requests revoke v1 `POST /v1/{account}/native/requests/revoke/v1` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/requests/revoke/v1" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/requests/revoke/v1", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/requests/revoke/v1", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get requests sent v1 `GET /v1/{account}/native/requests/sent/v1` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/requests/sent/v1?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/requests/sent/v1?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/requests/sent/v1?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## search ### Get search global · verified `GET /v1/{account}/native/search/global` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/search/global?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/search/global?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/search/global?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get search mediaoffersuggestiontags · verified `GET /v1/{account}/native/search/mediaoffersuggestiontags` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/search/mediaoffersuggestiontags?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/search/mediaoffersuggestiontags?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/search/mediaoffersuggestiontags?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## session ### Create session close `POST /v1/{account}/native/session/close` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/session/close" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/session/close", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/session/close", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## sessions ### Get sessions · verified `GET /v1/{account}/native/sessions` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/sessions?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/sessions?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/sessions?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## settings ### Get settings `GET /v1/{account}/native/settings` · 1 credit(s) Params: `categoryIds` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/settings?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/settings?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/settings?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create settings `POST /v1/{account}/native/settings` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/settings" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/settings", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/settings", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## signRequests ### Create signRequests cancel v1 `POST /v1/{account}/native/signRequests/cancel/v1` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/signRequests/cancel/v1" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/signRequests/cancel/v1", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/signRequests/cancel/v1", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get signRequests list v1 `GET /v1/{account}/native/signRequests/list/v1` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/signRequests/list/v1?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/signRequests/list/v1?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/signRequests/list/v1?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## status ### Create status `POST /v1/{account}/native/status` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/status" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/status", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/status", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## stories ### Get stories · verified `GET /v1/{account}/native/stories` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/stories?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/stories?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/stories?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create stories `POST /v1/{account}/native/stories` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/stories" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/stories", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/stories", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create stories order `POST /v1/{account}/native/stories/order` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/stories/order" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/stories/order", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/stories/order", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## streaming ### Get streaming channel · verified `GET /v1/{account}/native/streaming/channel` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/streaming/channel?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/streaming/channel?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/streaming/channel?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create streaming channel `POST /v1/{account}/native/streaming/channel` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/streaming/channel" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/streaming/channel", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/streaming/channel", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create streaming channel update `POST /v1/{account}/native/streaming/channel/update` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/streaming/channel/update" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/streaming/channel/update", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/streaming/channel/update", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get streaming followingstreams online · verified `GET /v1/{account}/native/streaming/followingstreams/online` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/streaming/followingstreams/online?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/streaming/followingstreams/online?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/streaming/followingstreams/online?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create streaming stream permissionflags `POST /v1/{account}/native/streaming/stream/permissionflags` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/streaming/stream/permissionflags" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/streaming/stream/permissionflags", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/streaming/stream/permissionflags", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create streaming ticket order `POST /v1/{account}/native/streaming/ticket/order` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/streaming/ticket/order" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/streaming/ticket/order", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/streaming/ticket/order", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## submit ### Create submit v1 `POST /v1/{account}/native/submit/v1` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/submit/v1" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/submit/v1", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/submit/v1", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## submitCoPerformer ### Create submitCoPerformer v1 `POST /v1/{account}/native/submitCoPerformer/v1` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/submitCoPerformer/v1" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/submitCoPerformer/v1", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/submitCoPerformer/v1", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## subscribers ### Get subscribers · verified `GET /v1/{account}/native/subscribers` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscribers?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/subscribers?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/subscribers?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## subscription ### Create subscription `POST /v1/{account}/native/subscription` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscription" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/subscription", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/subscription", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## subscriptions ### Get subscriptions · verified `GET /v1/{account}/native/subscriptions` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscriptions?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/subscriptions?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/subscriptions?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create subscriptions `POST /v1/{account}/native/subscriptions` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscriptions" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/subscriptions", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/subscriptions", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get subscriptions giftcode `GET /v1/{account}/native/subscriptions/giftcode` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscriptions/giftcode?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/subscriptions/giftcode?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/subscriptions/giftcode?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get subscriptions giftcodes · verified `GET /v1/{account}/native/subscriptions/giftcodes` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscriptions/giftcodes?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/subscriptions/giftcodes?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/subscriptions/giftcodes?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create subscriptions giftcodes `POST /v1/{account}/native/subscriptions/giftcodes` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscriptions/giftcodes" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/subscriptions/giftcodes", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/subscriptions/giftcodes", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create subscriptions promotions `POST /v1/{account}/native/subscriptions/promotions` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscriptions/promotions" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/subscriptions/promotions", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/subscriptions/promotions", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create subscriptions tier delete `POST /v1/{account}/native/subscriptions/tier/delete` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscriptions/tier/delete" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/subscriptions/tier/delete", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/subscriptions/tier/delete", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get subscriptions tiers · verified `GET /v1/{account}/native/subscriptions/tiers` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscriptions/tiers?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/subscriptions/tiers?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/subscriptions/tiers?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create subscriptions tiers `POST /v1/{account}/native/subscriptions/tiers` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscriptions/tiers" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/subscriptions/tiers", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/subscriptions/tiers", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create subscriptions tiers order `POST /v1/{account}/native/subscriptions/tiers/order` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/subscriptions/tiers/order" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/subscriptions/tiers/order", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/subscriptions/tiers/order", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## suggestions ### Get suggestions · verified `GET /v1/{account}/native/suggestions` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/suggestions?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/suggestions?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/suggestions?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## tenor ### Get tenor categories · verified `GET /v1/{account}/native/tenor/categories` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/tenor/categories?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/tenor/categories?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/tenor/categories?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get tenor featured · verified `GET /v1/{account}/native/tenor/featured` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/tenor/featured?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/tenor/featured?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/tenor/featured?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get tenor search · verified `GET /v1/{account}/native/tenor/search` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/tenor/search?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/tenor/search?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/tenor/search?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## thirdpartyconnect ### Create thirdpartyconnect authorization `POST /v1/{account}/native/thirdpartyconnect/authorization` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/thirdpartyconnect/authorization" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/thirdpartyconnect/authorization", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/thirdpartyconnect/authorization", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create thirdpartyconnect connect `POST /v1/{account}/native/thirdpartyconnect/connect` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/thirdpartyconnect/connect" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/thirdpartyconnect/connect", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/thirdpartyconnect/connect", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create thirdpartyconnect connections remove `POST /v1/{account}/native/thirdpartyconnect/connections/remove` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/thirdpartyconnect/connections/remove" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/thirdpartyconnect/connections/remove", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/thirdpartyconnect/connections/remove", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create thirdpartyconnect login `POST /v1/{account}/native/thirdpartyconnect/login` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/thirdpartyconnect/login" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/thirdpartyconnect/login", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/thirdpartyconnect/login", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get thirdpartyconnect providers · verified `GET /v1/{account}/native/thirdpartyconnect/providers` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/thirdpartyconnect/providers?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/thirdpartyconnect/providers?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/thirdpartyconnect/providers?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## timeline ### Get timeline `GET /v1/{account}/native/timeline` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/timeline?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/timeline?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/timeline?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get timeline home · verified `GET /v1/{account}/native/timeline/home` · 1 credit(s) Params: `after,before,mode` ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/timeline/home?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/timeline/home?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/timeline/home?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get timeline permissions · verified `GET /v1/{account}/native/timeline/permissions` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/timeline/permissions?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/timeline/permissions?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/timeline/permissions?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create timeline permissions `POST /v1/{account}/native/timeline/permissions` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/timeline/permissions" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/timeline/permissions", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/timeline/permissions", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## timelinenew ### Get timelinenew `GET /v1/{account}/native/timelinenew` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/timelinenew?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/timelinenew?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/timelinenew?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## tipgoals ### Get tipgoals `GET /v1/{account}/native/tipgoals` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/tipgoals?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/tipgoals?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/tipgoals?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create tipgoals `POST /v1/{account}/native/tipgoals` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/tipgoals" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/tipgoals", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/tipgoals", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create tipgoals delete `POST /v1/{account}/native/tipgoals/delete` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/tipgoals/delete" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/tipgoals/delete", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/tipgoals/delete", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## tips ### Get tips `GET /v1/{account}/native/tips` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/tips?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/tips?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/tips?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create tips `POST /v1/{account}/native/tips` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/tips" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/tips", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/tips", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get tips account `GET /v1/{account}/native/tips/account` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/tips/account?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/tips/account?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/tips/account?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## trackinglinks ### Get trackinglinks · verified `GET /v1/{account}/native/trackinglinks` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/trackinglinks?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/trackinglinks?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/trackinglinks?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create trackinglinks `POST /v1/{account}/native/trackinglinks` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/trackinglinks" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/trackinglinks", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/trackinglinks", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create trackinglinks claim `POST /v1/{account}/native/trackinglinks/claim` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/trackinglinks/claim" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/trackinglinks/claim", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/trackinglinks/claim", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create trackinglinks click `POST /v1/{account}/native/trackinglinks/click` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/trackinglinks/click" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/trackinglinks/click", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/trackinglinks/click", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create trackinglinks delete `POST /v1/{account}/native/trackinglinks/delete` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/trackinglinks/delete" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/trackinglinks/delete", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/trackinglinks/delete", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get trackinglinks revenuestats `GET /v1/{account}/native/trackinglinks/revenuestats` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/trackinglinks/revenuestats?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/trackinglinks/revenuestats?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/trackinglinks/revenuestats?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get trackinglinks stats `GET /v1/{account}/native/trackinglinks/stats` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/trackinglinks/stats?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/trackinglinks/stats?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/trackinglinks/stats?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create trackinglinks update `POST /v1/{account}/native/trackinglinks/update` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/trackinglinks/update" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/trackinglinks/update", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/trackinglinks/update", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## twofa ### Create twofa `POST /v1/{account}/native/twofa` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/twofa" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/twofa", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/twofa", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create twofa remove `POST /v1/{account}/native/twofa/remove` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/twofa/remove" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/twofa/remove", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/twofa/remove", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create twofa session create `POST /v1/{account}/native/twofa/session/create` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/twofa/session/create" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/twofa/session/create", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/twofa/session/create", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create twofa session verify `POST /v1/{account}/native/twofa/session/verify` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/twofa/session/verify" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/twofa/session/verify", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/twofa/session/verify", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create twofa verify `POST /v1/{account}/native/twofa/verify` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/twofa/verify" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/twofa/verify", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/twofa/verify", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## updateCoPerformer ### Create updateCoPerformer v1 `POST /v1/{account}/native/updateCoPerformer/v1` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/updateCoPerformer/v1" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/updateCoPerformer/v1", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/updateCoPerformer/v1", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## updateNickname ### Create updateNickname v1 `POST /v1/{account}/native/updateNickname/v1` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/updateNickname/v1" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/updateNickname/v1", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/updateNickname/v1", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## upload-url ### Create upload url v1 `POST /v1/{account}/native/upload-url/v1` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/upload-url/v1" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/upload-url/v1", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/upload-url/v1", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## upload-verify ### Create upload verify v1 `POST /v1/{account}/native/upload-verify/v1` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/upload-verify/v1" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/upload-verify/v1", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/upload-verify/v1", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## uservault ### Get uservault album content `GET /v1/{account}/native/uservault/album/content` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/uservault/album/content?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/uservault/album/content?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/uservault/album/content?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create uservault album content `POST /v1/{account}/native/uservault/album/content` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/uservault/album/content" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/uservault/album/content", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/uservault/album/content", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create uservault album content delete `POST /v1/{account}/native/uservault/album/content/delete` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/uservault/album/content/delete" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/uservault/album/content/delete", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/uservault/album/content/delete", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create uservault album delete `POST /v1/{account}/native/uservault/album/delete` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/uservault/album/delete" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/uservault/album/delete", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/uservault/album/delete", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create uservault album edit `POST /v1/{account}/native/uservault/album/edit` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/uservault/album/edit" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/uservault/album/edit", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/uservault/album/edit", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get uservault albums · verified `GET /v1/{account}/native/uservault/albums` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/uservault/albums?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/uservault/albums?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/uservault/albums?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create uservault albums `POST /v1/{account}/native/uservault/albums` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/uservault/albums" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/uservault/albums", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/uservault/albums", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create uservault albums order `POST /v1/{account}/native/uservault/albums/order` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/uservault/albums/order" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/uservault/albums/order", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/uservault/albums/order", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get uservault albumsnew · verified `GET /v1/{account}/native/uservault/albumsnew` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/uservault/albumsnew?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/uservault/albumsnew?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/uservault/albumsnew?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## vault ### Get vault albums · verified `GET /v1/{account}/native/vault/albums` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/vault/albums?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/vault/albums?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/vault/albums?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create vault albums `POST /v1/{account}/native/vault/albums` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/vault/albums" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/vault/albums", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/vault/albums", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create vault albums delete `POST /v1/{account}/native/vault/albums/delete` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/vault/albums/delete" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/vault/albums/delete", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/vault/albums/delete", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create vault albums edit `POST /v1/{account}/native/vault/albums/edit` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/vault/albums/edit" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/vault/albums/edit", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/vault/albums/edit", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create vault albums media `POST /v1/{account}/native/vault/albums/media` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/vault/albums/media" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/vault/albums/media", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/vault/albums/media", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create vault albums media delete `POST /v1/{account}/native/vault/albums/media/delete` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/vault/albums/media/delete" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/vault/albums/media/delete", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/vault/albums/media/delete", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create vault albums media rename `POST /v1/{account}/native/vault/albums/media/rename` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/vault/albums/media/rename" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/vault/albums/media/rename", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/vault/albums/media/rename", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create vault albums order `POST /v1/{account}/native/vault/albums/order` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/vault/albums/order" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/vault/albums/order", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/vault/albums/order", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Get vault albumsnew · verified `GET /v1/{account}/native/vault/albumsnew` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/vault/albumsnew?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/vault/albumsnew?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/vault/albumsnew?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## versioning ### Get versioning · verified `GET /v1/{account}/native/versioning` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/versioning?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/versioning?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/versioning?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## wall ### Get wall `GET /v1/{account}/native/wall` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/wall?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/wall?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/wall?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create wall create `POST /v1/{account}/native/wall/create` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/wall/create" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/wall/create", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/wall/create", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create wall delete `POST /v1/{account}/native/wall/delete` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/wall/delete" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/wall/delete", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/wall/delete", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create wall editorder `POST /v1/{account}/native/wall/editorder` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/wall/editorder" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/wall/editorder", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/wall/editorder", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create wall postcreate `POST /v1/{account}/native/wall/postcreate` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/wall/postcreate" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/wall/postcreate", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/wall/postcreate", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create wall postdelete `POST /v1/{account}/native/wall/postdelete` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/wall/postdelete" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/wall/postdelete", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/wall/postdelete", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create wall postedit `POST /v1/{account}/native/wall/postedit` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/wall/postedit" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/wall/postedit", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/wall/postedit", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## webpush ### Create webpush `POST /v1/{account}/native/webpush` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/webpush" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/webpush", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/webpush", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ### Create webpush delete `POST /v1/{account}/native/webpush/delete` · 2 credit(s) ```bash curl -X POST \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/webpush/delete" -d '{}' ``` ```python import requests r = requests.post( "https://api.creator-api.com/v1/{account}/native/webpush/delete", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/webpush/delete", { method: "POST", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ``` ## zendesk ### Get zendesk authorize · verified `GET /v1/{account}/native/zendesk/authorize` · 1 credit(s) ```bash curl -X GET \ -H "X-API-Key: $CREATOR_API_KEY" \ "https://api.creator-api.com/v1/{account}/native/zendesk/authorize?limit=50" ``` ```python import requests r = requests.get( "https://api.creator-api.com/v1/{account}/native/zendesk/authorize?limit=50", headers={"X-API-Key": KEY}, ) print(r.json()) ``` ```javascript const r = await fetch("https://api.creator-api.com/v1/{account}/native/zendesk/authorize?limit=50", { method: "GET", headers: { "X-API-Key": KEY }, }); console.log(await r.json()); ```