TikTok API

TikTok Ad library ad API

Fetch full details for a single TikTok ad (brand, title, spend, CTR, objectives, landing page, and video info).

POST/v1/run/tiktok.ad_library_ad
Requests
-
30d

Provider network

Providers ranked by traffic

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "data": {
    "adId": "a1b2c3d4",
    "adTitle": "Example title",
    "brandName": "Acme Inc",
    "comments": 12500,
    "cost": 19.99,
    "coverUrl": "https://example.com/page",
    "ctr": 12.5,
    "industry": "general",
    "landingPage": "example",
    "likes": 12500,
    "objective": "example",
    "shares": 13,
    "videoUrl": "https://example.com/page"
  },
  "found": true
}
Response interface
interface TiktokAdLibraryAdResponse {
  data: {
    adId: string;
    adTitle: string;
    brandName: string;
    comments: number;
    cost: number;
    coverUrl: string;
    ctr: number;
    industry: string;
    landingPage: string;
    likes: number;
    objective: string;
    shares: number;
    videoUrl: string;
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-16 · uptime and latency measured over 30d
POST /v1/run/tiktok.ad_library_ad
curl -X POST https://api.getanyapi.com/v1/run/tiktok.ad_library_ad \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"adId":"7648493525660270600"}'
FieldTypeExample value
Request body
adIdstring"7648493525660270600"TikTok Top Ads material/ad ID, or a Top Ads detail URL (e.g. 7648493525660270600).
Response
dataobject
data.adIdstringPopulated whenever the provider has data for the entity.
data.adTitlestringPopulated whenever the provider has data for the entity.
data.brandNamestring
data.commentsinteger
data.costnumber
data.coverUrlstringPopulated whenever the provider has data for the entity.
data.ctrnumber
data.industrystringPopulated whenever the provider has data for the entity.
data.landingPagestringPopulated whenever the provider has data for the entity.
data.likesinteger
data.objectivestringPopulated whenever the provider has data for the entity.
data.sharesinteger
data.videoUrlstringPopulated whenever the provider has data for the entity.
foundboolean
Price
Price per requestUSD$0.0012
Price /1k reqUSD$1.20

FAQ

About the TikTok Ad library ad API

The AnyAPI TikTok Ad library ad API returns TikTok ad library ad data as normalized JSON from one POST call to /v1/run/tiktok.ad_library_ad. Fetch full details for a single TikTok ad (brand, title, spend, CTR, objectives, landing page, and video info). AnyAPI routes each request across 2 sources and falls back automatically when one fails. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum.

It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Fetch full details for a single TikTok ad (brand, title, spend, CTR, objectives, landing page, and video info). The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.