Prism Trend Board API
Scrape Prism Trend Board data with one API call. Pass country_code (an ISO code Google Trends covers, such as DE). The board is computed live for this call and nothing is stored between calls, so there is no history and no days parameter: repeat calls within 15 minutes are served from cache. `breakout_posts` are videos on TikTok's local feed for that country, registered there, whose views are at least 3 times the median of the author's own recent posts (pinned posts and posts under 48 hours are left out, at least 8 posts are compared, and rows without enough posts are counted, not shown). `rising_sounds` are the sounds used most on that feed, with how many of each sound's first page of videos are from the last 3 days and whether it is a returning or new sound. `rising_hashtags` are TikTok's own hashtag board for the country, with growth from its daily popularity curve and the first day in the window it was non-zero. `rising_searches` are Google Trends Trending Now, where Google's own start time is the first-seen date. `sources` and `unavailable` say which parts answered. TikTok's hashtag board covers 27 markets; elsewhere that section is empty and says why. No language model is used. Music charts and Pinterest Trends are not included yet. The price is provisional.
Last updated September 2026Maintained by the SocialCrawl team
Returns what is rising in one country with no keyword: TikTok posts far above their author's usual views, the most used sounds, TikTok's hashtag board and Google trending searches.
Use it to scan a country for trends before you have a term to search. The board is computed on each call and keeps no history.
Searching 67 platforms in parallel
What can you do with the Trend Board API?
The Trend Board endpoint gives you structured Prism data with computed fields in a single request. No scraping infrastructure to build or maintain.
Example Request
curl -H "x-api-key: YOUR_API_KEY" \
"https://www.socialcrawl.dev/v1/prism/trend-board?country_code=DE"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/prism/trend-board",
params={
'country_code': 'DE',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/prism/trend-board?country_code=DE",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();Parameters
| Parameter | Required | Description |
|---|---|---|
| country_code | Yes | ISO 3166-1 alpha-2 country code, such as DE, US or KR. Any country Google Trends Trending Now covers. |
| period | No | 7 (default) or 30. The window of TikTok's hashtag board. Google Trending Now is always read over its longest window, 7 days. (7 | 30) |
| limit | No | Rows per section, 1 to 10. Default 10. |
What does the Prism Trend Board API return?
This synthetic fixture shows the documented response shape and fields. Values are illustrative; this is not a live API response.
Example response
{
"success": true,
"data": {
"country": "DE",
"period_days": 7,
"generated_at": "2026-09-23T01:30:00.000Z",
"policy_version": "n22-2026-09-23",
"breakout_posts": [
{
"id": "7684765644323032352",
"url": "https://www.tiktok.com/@creator/video/7684765644323032352",
"author": "creator",
"author_id": "7666924937450849302",
"region": "DE",
"views": 90000,
"published_at": "2026-09-12T21:35:33.000Z",
"vs_creator": 4,
"author_median_views": 22500,
"author_posts_compared": 8,
"music_id": "7684765700000000000"
}
],
"rising_sounds": [],
"rising_hashtags": [
{
"rank": 2,
"tag": "oktoberfest",
"url": "https://www.tiktok.com/tag/oktoberfest",
"posts": 10725,
"window_views": 121497473,
"growth_ratio": null,
"from_zero": true,
"rising": true,
"first_seen_in_window": {
"date": "2026-09-16",
"censored": false
},
"curve_points": 7
}
],
"rising_searches": [
{
"rank": 1,
"title": "lizzie borden",
"search_volume": 100000,
"increase_percent": 1000,
"started_at": "2026-09-16T04:40:00.000Z",
"ended_at": null,
"active": true,
"categories": [
"entertainment"
]
}
],
"sources": [
{
"key": "local_feed",
"ok": true,
"rows": 25
},
{
"key": "hashtag_board",
"ok": true,
"rows": 3
},
{
"key": "google_trending",
"ok": true,
"rows": 10
}
],
"unavailable": []
}
}Synthetic fixture for the documented response shape. Values are illustrative, not a production capture.
How does the Prism Trend Board API work?
Send a GET request with your API key and get back clean, structured JSON in our unified schema. Supported computed fields are populated when the source provides the required inputs.
Method
GET
Response
JSON
How do you scrape social media data in seconds?
The fastest social media scraping API for developers. Scrape profiles, posts, comments, and analytics from 67 platforms covering 10B+ monthly active users.
One schema, every platform
Query 67 platforms with identical response structures. Write your integration once.
Computed fields, not just scraped
When an endpoint supports these metrics and the source provides the required inputs, the normalized record includes engagement_rate, estimated_reach, content_category, and language. Ready to use.
See your data before you code
Visual Data Explorer. Paste any URL, get rich result cards, sortable tables, CSV export.
import requests
response = requests.get(
'https://www.socialcrawl.dev/v1/tiktok/profile',
params={'handle': 'charlidamelio'},
headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json(){
"success": true,
"platform": "tiktok",
"data": {
"author": {
"username": "charlidamelio",
"followers": 152400000
},
"engagement": {
"likes": 12400000000,
"engagement_rate": 0.087
},
"metadata": {
"language": "en",
"content_category": "lifestyle"
}
}
}Ready to scrape Prism Trend Board data?
Get your API key and start pulling Prism data in under 60 seconds.
