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.
Account & profile
Get account
GET /v1/{account}/native/account · 1 credit(s)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account?limit=50"
import requests
r = requests.get(
"https://api.creator-api.com/v1/{account}/native/account?limit=50",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/account",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/disable" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/account/disable",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/emailchange/create" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/account/emailchange/create",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/emailchange/finish" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/account/emailchange/finish",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/emailchange/verify" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/account/emailchange/verify",
headers={"X-API-Key": KEY},
)
print(r.json())
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
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/ignore" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/account/ignore",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/ignore/location" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/account/ignore/location",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/ignore/location/delete" -d '{}'
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/ignore/locations?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/me?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/media?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/media" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/account/media",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/media/bundle?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/media/bundle" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/account/media/bundle",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/media/bundle/permissions" -d '{}'
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/media/edit" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/account/media/edit",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/media/orders?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/media/permissions" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/account/media/permissions",
headers={"X-API-Key": KEY},
)
print(r.json())
const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/media/permissions", {
method: "POST",
headers: { "X-API-Key": KEY },
});
console.log(await r.json());
Get account search
GET /v1/{account}/native/account/search · 1 credit(s)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/search?limit=50"
import requests
r = requests.get(
"https://api.creator-api.com/v1/{account}/native/account/search?limit=50",
headers={"X-API-Key": KEY},
)
print(r.json())
const r = await fetch("https://api.creator-api.com/v1/{account}/native/account/search?limit=50", {
method: "GET",
headers: { "X-API-Key": KEY },
});
console.log(await r.json());
Get account searchnew
GET /v1/{account}/native/account/searchnew · 1 credit(s)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/searchnew?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/settings?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/settings" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/account/settings",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/tipgoals?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/username" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/account/username",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/verifynsfw?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/wallets/earnings?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/wallets/earnings/accounts?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/wallets/earnings/monthlystats?limit=50"
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())
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)
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"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/wallets/earnings/stats?limit=50"
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())
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)
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"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/wallets/earnings/transactions?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/wallets/transaction/refund" -d '{}'
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/wallets/transactions?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/walls?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/account/{id}/wallets?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/ignore?limit=50"
import requests
r = requests.get(
"https://api.creator-api.com/v1/{account}/native/ignore?limit=50",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/management" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/management",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/management/managementsession" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/management/managementsession",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/management/managementsession/claim" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/management/managementsession/claim",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/management/managementsession/remove" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/management/managementsession/remove",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/management/managementsession/update" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/management/managementsession/update",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/management/managementsessions?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/management/manageradd" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/management/manageradd",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/management/managerdelete" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/management/managerdelete",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/management/managers?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/model/application?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/model/application" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/model/application",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/model/applications?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/notes" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/notes",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/notes/delete" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/notes/delete",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/notes/edit" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/notes/edit",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/profile" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/profile",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/profile/application" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/profile/application",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/profile/picture" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/profile/picture",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/profile/pinned" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/profile/pinned",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/profile/pinned/remove" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/profile/pinned/remove",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/profile/pinned/update" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/profile/pinned/update",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/profile/social/remove" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/profile/social/remove",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/profile/socials?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/profile/socials" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/profile/socials",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/recapstats?limit=50"
import requests
r = requests.get(
"https://api.creator-api.com/v1/{account}/native/recapstats?limit=50",
headers={"X-API-Key": KEY},
)
print(r.json())
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
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/settings?limit=50"
import requests
r = requests.get(
"https://api.creator-api.com/v1/{account}/native/settings?limit=50",
headers={"X-API-Key": KEY},
)
print(r.json())
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}
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/settings" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/settings",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/suggestions?limit=50"
import requests
r = requests.get(
"https://api.creator-api.com/v1/{account}/native/suggestions?limit=50",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/updateNickname/v1" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/updateNickname/v1",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/certificate/challenge/v1" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/certificate/challenge/v1",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/commit/v1" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/commit/v1",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/enroll/v1" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/enroll/v1",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/getStatus/v1?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/idv" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/idv",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/idv/accountsessions?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/login" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/login",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/login/email" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/login/email",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/login/email/verification" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/login/email/verification",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/login/email/verification/token" -d '{}'
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/login/email/verify" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/login/email/verify",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/login/password" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/login/password",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/login/password/create" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/login/password/create",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/login/password/reset" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/login/password/reset",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/login/password/reset/verify" -d '{}'
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/login/password/status?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/login/twofa" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/login/twofa",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/pii/reveal/challenge/v1" -d '{}'
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/pii/reveal/v1" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/pii/reveal/v1",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/pii/selfie/v1?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/register" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/register",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/registernew" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/registernew",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/session/close" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/session/close",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/sessions?limit=50"
import requests
r = requests.get(
"https://api.creator-api.com/v1/{account}/native/sessions?limit=50",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/status" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/status",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/submit/v1" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/submit/v1",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/twofa" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/twofa",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/twofa/remove" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/twofa/remove",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/twofa/session/create" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/twofa/session/create",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/twofa/session/verify" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/twofa/session/verify",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/twofa/verify" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/twofa/verify",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/list/v1?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/lists" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/lists",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/lists/account?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/lists/aggregate/add" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/lists/aggregate/add",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/lists/commands" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/lists/commands",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/lists/edit" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/lists/edit",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/lists/items/add" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/lists/items/add",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/lists/items/remove" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/lists/items/remove",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/lists/order" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/lists/order",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/lists/remove" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/lists/remove",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/subscribers?limit=50"
import requests
r = requests.get(
"https://api.creator-api.com/v1/{account}/native/subscribers?limit=50",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/subscription" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/subscription",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/subscriptions?limit=50"
import requests
r = requests.get(
"https://api.creator-api.com/v1/{account}/native/subscriptions?limit=50",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/subscriptions" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/subscriptions",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/subscriptions/giftcode?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/subscriptions/giftcodes?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/subscriptions/giftcodes" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/subscriptions/giftcodes",
headers={"X-API-Key": KEY},
)
print(r.json())
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)}
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/subscriptions/promotions" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/subscriptions/promotions",
headers={"X-API-Key": KEY},
)
print(r.json())
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}
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/subscriptions/tier/delete" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/subscriptions/tier/delete",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/subscriptions/tiers?limit=50"
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())
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}]}
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/subscriptions/tiers" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/subscriptions/tiers",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/subscriptions/tiers/order" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/subscriptions/tiers/order",
headers={"X-API-Key": KEY},
)
print(r.json())
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());
Messaging
Create chatroom
POST /v1/{account}/native/chatroom · 2 credit(s)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/chatroom" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/chatroom",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/chatroom/chatters?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/chatroom/goal/tips?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/chatroom/goal/update" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/chatroom/goal/update",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/chatroom/goals?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/chatroom/goals" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/chatroom/goals",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/chatroom/message" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/chatroom/message",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/chatroom/messages?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/chatroom/moderation" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/chatroom/moderation",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/chatroom/permissionflags" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/chatroom/permissionflags",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/chatroom/subalert" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/chatroom/subalert",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/chatroom/update" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/chatroom/update",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/chatrooms?limit=50"
import requests
r = requests.get(
"https://api.creator-api.com/v1/{account}/native/chatrooms?limit=50",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/chatrooms/settings?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/chatrooms/settings" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/chatrooms/settings",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/group?limit=50"
import requests
r = requests.get(
"https://api.creator-api.com/v1/{account}/native/group?limit=50",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/group" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/group",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/groups/dmpermissionflags?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/groups/dmpermissionflags" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/groups/dmpermissionflags",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/groups/mediaoffers?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/groups/users/delete" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/groups/users/delete",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/groups/users/readreceipts" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/groups/users/readreceipts",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/groups/users/settings" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/groups/users/settings",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/message?limit=50"
import requests
r = requests.get(
"https://api.creator-api.com/v1/{account}/native/message?limit=50",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/message" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/message",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/message/ack" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/message/ack",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/message/ack/all" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/message/ack/all",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/message/automated?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/message/automated" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/message/automated",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/message/automated/edit" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/message/automated/edit",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/message/broadcast" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/message/broadcast",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/message/broadcast/scheduled?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/message/broadcast/scheduled" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/message/broadcast/scheduled",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/message/broadcast/stats?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/message/broadcast/stats/deleted?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/message/delete" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/message/delete",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/message/like" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/message/like",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/message/like/remove" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/message/like/remove",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/message/typing" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/message/typing",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/message/undelivered?limit=50"
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())
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
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/message/unread?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/messages?limit=50"
import requests
r = requests.get(
"https://api.creator-api.com/v1/{account}/native/messages?limit=50",
headers={"X-API-Key": KEY},
)
print(r.json())
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
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/messaging/groups?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/tenor/categories?limit=50"
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())
const r = await fetch("https://api.creator-api.com/v1/{account}/native/tenor/categories?limit=50", {
method: "GET",
headers: { "X-API-Key": KEY },
});
console.log(await r.json());
Get tenor featured · verified
GET /v1/{account}/native/tenor/featured · 1 credit(s)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/tenor/featured?limit=50"
import requests
r = requests.get(
"https://api.creator-api.com/v1/{account}/native/tenor/featured?limit=50",
headers={"X-API-Key": KEY},
)
print(r.json())
const r = await fetch("https://api.creator-api.com/v1/{account}/native/tenor/featured?limit=50", {
method: "GET",
headers: { "X-API-Key": KEY },
});
console.log(await r.json());
Get tenor search · verified
GET /v1/{account}/native/tenor/search · 1 credit(s)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/tenor/search?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/getCurrentLeaderboard/v1?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/likes" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/likes",
headers={"X-API-Key": KEY},
)
print(r.json())
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
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/likes/remove" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/likes/remove",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/poll" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/poll",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/poll/subscribe" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/poll/subscribe",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/poll/unsubscribe" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/poll/unsubscribe",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/poll/vote" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/poll/vote",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/polls?limit=50"
import requests
r = requests.get(
"https://api.creator-api.com/v1/{account}/native/polls?limit=50",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/post?limit=50"
import requests
r = requests.get(
"https://api.creator-api.com/v1/{account}/native/post?limit=50",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/post" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/post",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/post/scheduled?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/post/scheduled" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/post/scheduled",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/management/{accountId}/postreplydelete" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/management/{accountId}/postreplydelete",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/post/{postId}/replies?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/postreply/verify" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/postreply/verify",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/timeline?limit=50"
import requests
r = requests.get(
"https://api.creator-api.com/v1/{account}/native/timeline?limit=50",
headers={"X-API-Key": KEY},
)
print(r.json())
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
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/timeline/home?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/timeline/permissions?limit=50"
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())
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})
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/timeline/permissions" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/timeline/permissions",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/timelinenew?limit=50"
import requests
r = requests.get(
"https://api.creator-api.com/v1/{account}/native/timelinenew?limit=50",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/wall?limit=50"
import requests
r = requests.get(
"https://api.creator-api.com/v1/{account}/native/wall?limit=50",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/wall/create" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/wall/create",
headers={"X-API-Key": KEY},
)
print(r.json())
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}
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/wall/delete" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/wall/delete",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/wall/editorder" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/wall/editorder",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/wall/postcreate" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/wall/postcreate",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/wall/postdelete" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/wall/postdelete",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/wall/postedit" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/wall/postedit",
headers={"X-API-Key": KEY},
)
print(r.json())
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());
Payments & earnings
Create orders
POST /v1/{account}/native/orders · 2 credit(s)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/orders" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/orders",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/orders/products?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/payments?limit=50"
import requests
r = requests.get(
"https://api.creator-api.com/v1/{account}/native/payments?limit=50",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/payments/deposits/crypto/address?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/payments/payout" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/payments/payout",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/payments/payout/requests?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/payments/payoutmethod" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/payments/payoutmethod",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/payments/payoutmethod/delete" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/payments/payoutmethod/delete",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/payments/payoutmethods?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/payments/wallets?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/payments/wallets" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/payments/wallets",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/payments/wallets/approve" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/payments/wallets/approve",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/payments/wallets/default" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/payments/wallets/default",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/payments/wallets/delete" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/payments/wallets/delete",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/payments/wallets/transactions?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/payments/wallets/transactions" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/payments/wallets/transactions",
headers={"X-API-Key": KEY},
)
print(r.json())
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
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/payouts/documentation?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/payouts/documentation" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/payouts/documentation",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/payouts/method" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/payouts/method",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/payouts/method/update" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/payouts/method/update",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/productorders" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/productorders",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/requests/accept/v1" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/requests/accept/v1",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/requests/cancel/v1" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/requests/cancel/v1",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/requests/count/v1?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/requests/decline/v1" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/requests/decline/v1",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/requests/list/v1?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/requests/report/v1" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/requests/report/v1",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/requests/revoke/v1" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/requests/revoke/v1",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/requests/sent/v1?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/tipgoals?limit=50"
import requests
r = requests.get(
"https://api.creator-api.com/v1/{account}/native/tipgoals?limit=50",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/tipgoals" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/tipgoals",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/tipgoals/delete" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/tipgoals/delete",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/tips?limit=50"
import requests
r = requests.get(
"https://api.creator-api.com/v1/{account}/native/tips?limit=50",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/tips" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/tips",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/tips/account?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/content?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/content" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/content",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/content/delete" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/content/delete",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/labels?limit=50"
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())
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
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/livesuggestions?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/media/explore?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/media/similar?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/media/suggestions?limit=50"
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())
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
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/media/suggestionsnew?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/media/tag?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/media/tags/discover?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/preferences?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/preferences" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/preferences",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/preferences/delete" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/preferences/delete",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/promo/eventgiftcodes?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/promo/giftcodes?limit=50"
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())
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
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/suggestions?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/suggestions/accountinfo" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/suggestions/accountinfo",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/suggestions/views" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/suggestions/views",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/tags?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/tags" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/tags",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/tags/delete" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/contentdiscovery/tags/delete",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/it/fyp" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/it/fyp",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/it/mis" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/it/mis",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/it/moie/stats?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/it/moie/statsnew?limit=50"
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())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/it/mois" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/it/mois",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X POST \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/it/pis" -d '{}'
import requests
r = requests.post(
"https://api.creator-api.com/v1/{account}/native/it/pis",
headers={"X-API-Key": KEY},
)
print(r.json())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/search/global?limit=50"
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())
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)
curl -X GET \
-H "X-API-Key: $CREATORS_API_KEY" \
"https://api.creator-api.com/v1/{account}/native/search/mediaoffersuggestiontags?limit=50"
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())
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());
No endpoint matches that filter.