Provider docs

TikTok APILive

Creator profiles, video posts with engagement metrics, and hashtag feeds — public TikTok data through the shared ReplyNodes contract.

Quickstart

# 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}}'

Operations

OperationParamsReturns
userhandleCreator profile: display name, avatar, follower count.
user_postshandle, count?, cursor?Recent posts by a creator, paginated via opaque cursor.
postidOne video post: caption, author, play/share/like counts, music reference.

Data shape

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.