The Social APIs return public content from TikTok, Instagram, and Facebook. All three share the same shape: search, single item, profile, profile posts, comments, and hashtag.
| TikTok | |||
|---|---|---|---|
| Search | POST /desearch/tiktok/search | POST /desearch/instagram/search | POST /desearch/facebook/search |
| Single item | GET /desearch/tiktok/post/{id} | GET /desearch/instagram/media/{id} | GET /desearch/facebook/post/{id} |
| Profile | GET /desearch/tiktok/profile/{username} | GET /desearch/instagram/profile/{username} | GET /desearch/facebook/profile/{profile_id} |
| Profile posts | GET .../profile/{username}/posts | GET .../profile/{username}/posts | GET .../profile/{profile_id}/posts |
| Comments | GET /desearch/tiktok/comments/{video_id} | GET /desearch/instagram/comments/{media_id} | GET /desearch/facebook/comments/{post_id} |
| Hashtag | GET /desearch/tiktok/hashtag/{tag} | GET /desearch/instagram/hashtag/{tag} | GET /desearch/facebook/hashtag/{tag} |
TikTok additionally has GET /desearch/tiktok/trending.
Schemas for every endpoint are in the API Reference.