Truth Social Profile API
Scrape Truth Social Profile data with one API call. Returns public profile information for a Truth Social user including display name, follower count, following count, truth count, bio, and profile image URL.
Last updated July 2026
Try the Truth Social Profile API
See real data before writing a single line
Searching 44 platforms in parallel
What can you do with the Profile API?
The Profile endpoint gives you structured Truth Social 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/truthsocial/profile?handle=realDonaldTrump"import requests
response = requests.get(
"https://www.socialcrawl.dev/v1/truthsocial/profile",
params={
'handle': 'realDonaldTrump',
},
headers={"x-api-key": "YOUR_API_KEY"},
)
data = response.json()const response = await fetch(
"https://www.socialcrawl.dev/v1/truthsocial/profile?handle=realDonaldTrump",
{
headers: { "x-api-key": "YOUR_API_KEY" },
},
);
const data = await response.json();Parameters
| Parameter | Required | Description |
|---|---|---|
| handle | Yes | Truth Social username without the @ symbol |
What does the Truth Social Profile API return?
Every response follows one unified schema. Here is a real, unmodified response body, so you can see the exact fields you get back before spending a credit.
Example response
{
"success": true,
"platform": "tiktok",
"endpoint": "/v1/tiktok/profile",
"data": {
"author": {
"id": "5831967",
"username": "charlidamelio",
"display_name": "charli d’amelio",
"avatar_url": "https://p16-common-sign.tiktokcdn-us.com/tos-useast5-avt-0068-tx/ee31de49ddf64b45c5b2e3c55fbd0ea4~tplv-tiktokx-cropcenter:1080:1080.jpeg?dr=9640&refresh_token=bacf7094&x-expires=1783288800&x-signature=DqbVyoxw%2FdOUTBfg8T57ssAcLbQ%3D&t=4d5b0474&ps=13740610&shp=a5d48078&shcp=81f88b70&idc=useast8",
"bio": null,
"url": null,
"verified": true,
"private": false,
"followers": 159000000,
"following": 1397,
"posts_count": 3174,
"likes_count": -640308194,
"joined_at": null
},
"computed": {
"engagement_rate": 0,
"language": null,
"content_category": null,
"estimated_reach": 0
},
"_warnings": [
"computed.engagement_rate: value fell below 0 (raw: -4.027096); clamped"
]
},
"credits_used": 1,
"credits_remaining": 9999,
"request_id": "req_example000000",
"cached": false
}Live sample illustrating the unified response shape. Field values reflect the record you query.
How does the Truth Social Profile API work?
Send a GET request with your API key and get back clean, structured JSON. Every response follows our unified schema with computed fields.
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 44 platforms covering 10B+ monthly active users.
One schema, every platform
Query 44 platforms with identical response structures. Write your integration once.
Computed fields, not just scraped
Every response 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"
}
}
}Have a question? We got answers
Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.
Contact usAsk AI about SocialCrawl
Ready to scrape Truth Social Profile data?
Get your API key and start pulling Truth Social data in under 60 seconds.
