List TikTok Business Centers
Returns the TikTok Business Centers (BCs) the connected tiktokads account can read.
Each BC reports its advertiser count so callers can build agency-style pickers
without re-walking /v1/ads/accounts per BC.
TikTok-only. Solo advertisers (non-agency tokens) return an empty array.
API key authentication - use your Zernio API key as a Bearer token
In: header
Query Parameters
ID of the tiktokads (or parent tiktok posting) SocialAccount
Response Body
application/json
application/json
import Zernio from '@zernio/node';const zernio = new Zernio({ apiKey: process.env.ZERNIO_API_KEY });const { data } = await zernio.adaccounts.listAdsBusinessCenters({ query: { accountId: 'account_abc123', },});console.log(data);{
"businessCenters": [
{
"bcId": "7123456789012345678",
"name": "Acme Agency",
"advertiserCount": 23
}
]
}{
"error": "Unauthorized"
}A/B tests and lift studies GET
Lists the ad account's A/B tests and lift studies (Meta's `/act_X/ad_studies`), rows returned verbatim. The default projection covers id, name, type, timing and cells with split percentages; `fields` is a raw-passthrough override.
High demand periods / budget schedules GET
Scheduled budget increases (Meta's budget-scheduling API). The Graph edge lives on the campaign and ad-set nodes only, so exactly one of `campaignId` / `adSetId` (platform ids) is required. Rows returned verbatim (budget_value, budget_value_type, time window, recurrence).