Home/Docs/Fansly reference

Fansly API 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. 351 capabilities · 104 live verified · 209 writes · 15 categories.

How every call works

All native Fansly routes are reached through one pattern:

Text
{METHOD} https://api.creator-api.com/v1/{account}/native/{native_path}

{account} is the connected Fansly account id. Auth header X-API-Key: <your 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 & profile

Get account

GET /v1/{account}/native/account · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Params: ignoredId, ignoreFlags · bitmask MUTE=1 BLOCK=2 VIP=4 SUGGESTION_MUTE=8 · set bit 4 to add a fan to VIP, clear bit 4 to remove

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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 searchnew

GET /v1/{account}/native/account/searchnew · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Get ignore · verified

GET /v1/{account}/native/ignore · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Create management

POST /v1/{account}/native/management · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Get model application

GET /v1/{account}/native/model/application · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Create notes

POST /v1/{account}/native/notes · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Create profile

POST /v1/{account}/native/profile · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Get recapstats · verified

GET /v1/{account}/native/recapstats · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Get settings

GET /v1/{account}/native/settings · 1 credit(s)

Params: categoryIds

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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 · verified

POST /v1/{account}/native/settings · 2 credit(s)

Verified live: Require Payment Method to follow toggle: {categoryId:"3000",keyId:"100",value:1|0}

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Get suggestions · verified

GET /v1/{account}/native/suggestions · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Create updateNickname v1

POST /v1/{account}/native/updateNickname/v1 · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Auth & security

Create certificate challenge v1

POST /v1/{account}/native/certificate/challenge/v1 · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Create commit v1

POST /v1/{account}/native/commit/v1 · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Create enroll v1

POST /v1/{account}/native/enroll/v1 · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Get getStatus v1

GET /v1/{account}/native/getStatus/v1 · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Create idv

POST /v1/{account}/native/idv · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Create login

POST /v1/{account}/native/login · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Create pii reveal challenge v1

POST /v1/{account}/native/pii/reveal/challenge/v1 · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Create register

POST /v1/{account}/native/register · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Create registernew

POST /v1/{account}/native/registernew · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Create session close

POST /v1/{account}/native/session/close · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Get sessions · verified

GET /v1/{account}/native/sessions · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Create status

POST /v1/{account}/native/status · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Create submit v1

POST /v1/{account}/native/submit/v1 · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Create twofa

POST /v1/{account}/native/twofa · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Subscriptions & fans

Get list v1

GET /v1/{account}/native/list/v1 · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Create lists

POST /v1/{account}/native/lists · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Get subscribers · verified

GET /v1/{account}/native/subscribers · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Create subscription

POST /v1/{account}/native/subscription · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Get subscriptions · verified

GET /v1/{account}/native/subscriptions · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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 · verified

POST /v1/{account}/native/subscriptions/promotions · 2 credit(s)

Verified live: {planId(=tier.plans[0].id),status:1,duration(days),maxUses,price(mills, must be >= 3000 = $3.00 platform floor),startsAt,endsAt(epoch ms)}

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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 · verified

POST /v1/{account}/native/subscriptions/tier/delete · 2 credit(s)

Verified live: {subscriptionTierId}

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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 · verified

POST /v1/{account}/native/subscriptions/tiers · 2 credit(s)

Verified live: {name,color,price(mills,/1000=$),maxSubscribers,subscriptionBenefits,plans:[{price(mills),billingCycle(days),status:1}]}

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Follow graph

Get account followers · verified

GET /v1/{account}/native/account/{accountId}/followers · 1 credit(s)

Params: before, after, limit, offset, search

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_API_KEY" \
  "https://api.creator-api.com/v1/{account}/native/account/{accountId}/followers?limit=50"
Python
import requests
r = requests.get(
    "https://api.creator-api.com/v1/{account}/native/account/{accountId}/followers?limit=50",
    headers={"X-API-Key": KEY},
)
print(r.json())
JavaScript
const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/{accountId}/followers?limit=50", {
  method: "GET",
  headers: { "X-API-Key": KEY },
});
console.log(await r.json());

Create account followers

POST /v1/{account}/native/account/{accountId}/followers · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_API_KEY" \
  "https://api.creator-api.com/v1/{account}/native/account/{accountId}/followers" -d '{}'
Python
import requests
r = requests.post(
    "https://api.creator-api.com/v1/{account}/native/account/{accountId}/followers",
    headers={"X-API-Key": KEY},
)
print(r.json())
JavaScript
const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/{accountId}/followers", {
  method: "POST",
  headers: { "X-API-Key": KEY },
});
console.log(await r.json());

Create account followers remove

POST /v1/{account}/native/account/{accountId}/followers/remove · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_API_KEY" \
  "https://api.creator-api.com/v1/{account}/native/account/{accountId}/followers/remove" -d '{}'
Python
import requests
r = requests.post(
    "https://api.creator-api.com/v1/{account}/native/account/{accountId}/followers/remove",
    headers={"X-API-Key": KEY},
)
print(r.json())
JavaScript
const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/{accountId}/followers/remove", {
  method: "POST",
  headers: { "X-API-Key": KEY },
});
console.log(await r.json());

Get account following · verified

GET /v1/{account}/native/account/{accountId}/following · 1 credit(s)

Params: before, after, limit, offset

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_API_KEY" \
  "https://api.creator-api.com/v1/{account}/native/account/{accountId}/following?limit=50"
Python
import requests
r = requests.get(
    "https://api.creator-api.com/v1/{account}/native/account/{accountId}/following?limit=50",
    headers={"X-API-Key": KEY},
)
print(r.json())
JavaScript
const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/{accountId}/following?limit=50", {
  method: "GET",
  headers: { "X-API-Key": KEY },
});
console.log(await r.json());

Messaging

Create chatroom

POST /v1/{account}/native/chatroom · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Get chatrooms · verified

GET /v1/{account}/native/chatrooms · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Get group

GET /v1/{account}/native/group · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Get groups dmpermissionflags · verified

GET /v1/{account}/native/groups/dmpermissionflags · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Get message

GET /v1/{account}/native/message · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Get messages

GET /v1/{account}/native/messages · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Get messaging groups · verified

GET /v1/{account}/native/messaging/groups · 1 credit(s)

Params: flags,limit,offset,sortOrder

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Get tenor categories · verified

GET /v1/{account}/native/tenor/categories · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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 search · verified

GET /v1/{account}/native/tenor/search · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Content & posts

Get getCurrentLeaderboard v1

GET /v1/{account}/native/getCurrentLeaderboard/v1 · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Create likes

POST /v1/{account}/native/likes · 2 credit(s)

Params: postId · also likes a comment (a Fansly comment is a reply post, pass the reply postId)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Params: postId · unlike a post or a comment reply post

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Create poll

POST /v1/{account}/native/poll · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Get polls · verified

GET /v1/{account}/native/polls · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Get post

GET /v1/{account}/native/post · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Create management postreplydelete

POST /v1/{account}/native/management/{accountId}/postreplydelete · 2 credit(s)

Params: postId (body)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_API_KEY" \
  "https://api.creator-api.com/v1/{account}/native/management/{accountId}/postreplydelete" -d '{}'
Python
import requests
r = requests.post(
    "https://api.creator-api.com/v1/{account}/native/management/{accountId}/postreplydelete",
    headers={"X-API-Key": KEY},
)
print(r.json())
JavaScript
const r = await fetch("https://api.creator-api.com/v1/{account}/native/management/{accountId}/postreplydelete", {
  method: "POST",
  headers: { "X-API-Key": KEY },
});
console.log(await r.json());

Get post replies · verified

GET /v1/{account}/native/post/{postId}/replies · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_API_KEY" \
  "https://api.creator-api.com/v1/{account}/native/post/{postId}/replies?limit=50"
Python
import requests
r = requests.get(
    "https://api.creator-api.com/v1/{account}/native/post/{postId}/replies?limit=50",
    headers={"X-API-Key": KEY},
)
print(r.json())
JavaScript
const r = await fetch("https://api.creator-api.com/v1/{account}/native/post/{postId}/replies?limit=50", {
  method: "GET",
  headers: { "X-API-Key": KEY },
});
console.log(await r.json());

Create postreply verify

POST /v1/{account}/native/postreply/verify · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Get timeline

GET /v1/{account}/native/timeline · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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 · verified

POST /v1/{account}/native/timeline/permissions · 2 credit(s)

Verified live: permissionFlags:[{type:0,flags:1}] (1=must be following, 2=must be subscribed to any tier, 4=must be subscribed to a specific tier with metadata:{subscriptionTierId})

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Get timelinenew

GET /v1/{account}/native/timelinenew · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Get wall

GET /v1/{account}/native/wall · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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 · verified

POST /v1/{account}/native/wall/create · 2 credit(s)

Verified live: {name,description,metadata,private:1} -- private:1 makes it a private/locked wall (e.g. for reels)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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 · verified

POST /v1/{account}/native/wall/delete · 2 credit(s)

Verified live: {wallId}

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Stories

Get mediastories · verified

GET /v1/{account}/native/mediastories · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Get mediastoriesnew · verified

GET /v1/{account}/native/mediastoriesnew · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Create mediastory delete

POST /v1/{account}/native/mediastory/delete · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Get stories · verified

GET /v1/{account}/native/stories · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Media & vault

Get media

GET /v1/{account}/native/media · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Get mediaoffers location

GET /v1/{account}/native/mediaoffers/location · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Create upload url v1

POST /v1/{account}/native/upload-url/v1 · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Create upload verify v1

POST /v1/{account}/native/upload-verify/v1 · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Get uservault album content

GET /v1/{account}/native/uservault/album/content · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Get vault albums · verified

GET /v1/{account}/native/vault/albums · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Payments & earnings

Create orders

POST /v1/{account}/native/orders · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Get payments

GET /v1/{account}/native/payments · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Get payouts documentation · verified

GET /v1/{account}/native/payouts/documentation · 1 credit(s)

Params: type

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Create productorders

POST /v1/{account}/native/productorders · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Create requests accept v1

POST /v1/{account}/native/requests/accept/v1 · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Get tipgoals

GET /v1/{account}/native/tipgoals · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Get tips

GET /v1/{account}/native/tips · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Discovery & feed

Get contentdiscovery content · verified

GET /v1/{account}/native/contentdiscovery/content · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Create it fyp

POST /v1/{account}/native/it/fyp · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Get search global · verified

GET /v1/{account}/native/search/global · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Live streaming

Get streaming channel · verified

GET /v1/{account}/native/streaming/channel · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Growth & tracking

Get referals code · verified

GET /v1/{account}/native/referals/code · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Co-performers

Create addCoPerformer v1

POST /v1/{account}/native/addCoPerformer/v1 · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Create archiveCoPerformer v1

POST /v1/{account}/native/archiveCoPerformer/v1 · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Create createSignRequest v1

POST /v1/{account}/native/createSignRequest/v1 · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Create requestCoPerformer v1

POST /v1/{account}/native/requestCoPerformer/v1 · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Create signRequests cancel v1

POST /v1/{account}/native/signRequests/cancel/v1 · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Create submitCoPerformer v1

POST /v1/{account}/native/submitCoPerformer/v1 · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Create updateCoPerformer v1

POST /v1/{account}/native/updateCoPerformer/v1 · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Notifications

Get notifications · verified

GET /v1/{account}/native/notifications · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Create reports

POST /v1/{account}/native/reports · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Create webpush

POST /v1/{account}/native/webpush · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Integrations & utility

Get device id · verified

GET /v1/{account}/native/device/id · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Get emails unsubscribe

GET /v1/{account}/native/emails/unsubscribe · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Get geolocation subdivisions · verified

GET /v1/{account}/native/geolocation/subdivisions · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Get intercom authorize · verified

GET /v1/{account}/native/intercom/authorize · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Create optOut v1

POST /v1/{account}/native/optOut/v1 · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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());

Create thirdpartyconnect authorization

POST /v1/{account}/native/thirdpartyconnect/authorization · 2 credit(s)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X POST \
  -H "X-API-Key: $CREATORS_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)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Get versioning · verified

GET /v1/{account}/native/versioning · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());

Get zendesk authorize · verified

GET /v1/{account}/native/zendesk/authorize · 1 credit(s)

Shell
curl -X GET \
  -H "X-API-Key: $CREATORS_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());
No endpoint matches that filter.