Better Fetch
Social networks3 runnable operations

Truth Social reference

Profiles, user timelines, and individual posts from public Truth Social surfaces.

Each operation below runs through the tool endpoint shown, and is available through REST, MCP, and the Better Fetch workspace.

Profile

Available

Profile from public Truth Social surfaces, returned as structured data for agents, research, and monitoring workflows.

curl -sS -X POST "https://betterfetch.co/api/tools/truth_social_scraper/run" \
  -H "Authorization: Bearer bf_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"input":{"mode":"profile","handle":"realDonaldTrump"}}'

Tool: truth_social_scraper

User posts

Available

User posts from public Truth Social surfaces, returned as structured data for agents, research, and monitoring workflows.

curl -sS -X POST "https://betterfetch.co/api/tools/truth_social_scraper/run" \
  -H "Authorization: Bearer bf_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"input":{"mode":"posts","handle":"realDonaldTrump","max_results":5}}'

Tool: truth_social_scraper

Post details

Available

Post details from public Truth Social surfaces, returned as structured data for agents, research, and monitoring workflows.

curl -sS -X POST "https://betterfetch.co/api/tools/truth_social_scraper/run" \
  -H "Authorization: Bearer bf_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"input":{"mode":"post","post_url":"https://truthsocial.com/@realDonaldTrump/114315219437063160"}}'

Tool: truth_social_scraper