Platforms

TikTok

TikTok profiles, videos, social graph, locations, music charts, comments, and replies without the Research API.

Openhandle reads public TikTok profiles, videos, followers, liked posts, comments, hashtags, locations, music, search results, and trending feeds with an API key. No Research API application or institutional requirements are needed.

Endpoints

OperationEndpoint
Get a profileGET /v1/tiktok/profiles/{identifier}
List profile videosGET /v1/tiktok/profiles/{identifier}/posts
List liked postsGET /v1/tiktok/profiles/{identifier}/liked-posts
List followersGET /v1/tiktok/profiles/{identifier}/followers
List followingGET /v1/tiktok/profiles/{identifier}/following
List profile musicGET /v1/tiktok/profiles/{identifier}/music
List playlist postsGET /v1/tiktok/profiles/{identifier}/playlists/{playlistId}/posts
Get a videoGET /v1/tiktok/posts/{identifier}
List commentsGET /v1/tiktok/posts/{identifier}/comments
List replies to a commentGET /v1/tiktok/posts/{identifier}/comments/{commentId}/replies
Search profilesGET /v1/tiktok/search/profiles?q={query}
Search postsGET /v1/tiktok/search/posts?q={query}
Search hashtagsGET /v1/tiktok/search/hashtags?q={query}
Search locationsGET /v1/tiktok/search/locations?q={query}
Search musicGET /v1/tiktok/search/music?q={query}
Get a hashtagGET /v1/tiktok/hashtags/{identifier}
List hashtag postsGET /v1/tiktok/hashtags/{identifier}/posts
Get a locationGET /v1/tiktok/locations/{id}
List location postsGET /v1/tiktok/locations/{id}/posts
Get musicGET /v1/tiktok/music/{id}
List music postsGET /v1/tiktok/music/{id}/posts
List effect postsGET /v1/tiktok/effects/{id}/posts
List trending categoriesGET /v1/tiktok/trending/categories
List trending musicGET /v1/tiktok/trending/music
List trending postsGET /v1/tiktok/trending/posts

The complete 28-operation surface also covers liked posts, effects, and playlists. Every operation has a generated API reference page.

All endpoints accept the freshness parameter. Paginated list endpoints use cursors.

Each operation and locator has a generated API reference with a working Test request before its Live request.

Identifiers

Use @tiktok for a username or place the stable platform ID directly in the same path. Both work on every profile path, including /posts. Video lookups use the platform video ID. Convert public URLs locally or with the URL resolver.

Handles change; platform IDs do not. Openhandle resolves both through its durable identity index. If you store references long-term, store the id from the response and use it for later lookups.

Test example

curl "https://api.openhandle.dev/v1/tiktok/profiles/@pixel_orchard_tt_test/posts?freshness=24h" \
  -H "Authorization: Bearer $OPENHANDLE_TEST_KEY"

Expected: HTTP 200, Openhandle-Environment: test, and Openhandle-Cost: 0.000. Find other documented inputs in the Test Data catalog.

Live example

curl "https://api.openhandle.dev/v1/tiktok/profiles/@$REAL_TIKTOK_USERNAME/posts?freshness=7d" \
  -H "Authorization: Bearer $OPENHANDLE_LIVE_KEY"

Rich response data

TikTokProfile adds verification type and label, professional-account status, and commerce availability when TokAPI supplies them. TikTokPost returns the author and music nodes, commercial-music status, AI-generated-content label, all public media renditions with semantic roles and watermark flags, and the platform's download metric in addition to the shared post metrics.

Effects and playlists have dedicated typed schemas rather than generic entity payloads.

Honest limits

  • Private profiles return PROFILE_PRIVATE (HTTP 403). We do not access private content. The definitive answer is billable.
  • TikTok views count loops. See metric semantics before comparing across platforms.
  • Media URLs are proxied through media.openhandle.dev so they stay stable while you process them.

On this page