Provider docs
Creator profiles, video posts with engagement metrics, and hashtag feeds — public TikTok data through the shared ReplyNodes contract.
# Creator profile
curl -X POST $BASE/v1/tiktok/fetch \
-H "Authorization: Bearer $REPLYNODES_API_KEY" \
-H "Content-Type: application/json" \
-d '{"operation":"user","params":{"handle":"@example"}}'
# A creator's recent posts
curl -X POST $BASE/v1/tiktok/fetch \
-H "Authorization: Bearer $REPLYNODES_API_KEY" \
-H "Content-Type: application/json" \
-d '{"operation":"user_posts","params":{"handle":"@example","count":10}}'
| Operation | Params | Returns |
|---|---|---|
| user | handle | Creator profile: display name, avatar, follower count. |
| user_posts | handle, count?, cursor? | Recent posts by a creator, paginated via opaque cursor. |
| post | id | One video post: caption, author, play/share/like counts, music reference. |
Posts and creators use tiktok:post:… / tiktok:user:… URNs.
Engagement counts follow the never-fabricated rule: integer when known,
explicit null when the upstream omits them.