Skip to content

Overview

RAW API endpoints return real-time, unfiltered data data from public social media profiles on Instagram, TikTok, and YouTube. Use them to access profiles, content, comments, tags, and hashtag feeds — exactly as they appear on the platforms.

These endpoints are ideal for custom analytics, live monitoring, or building your own enrichment workflows.

⚠️ Data is returned as-is, without filtering. Handle rate limits and pagination as needed.

Read the Raw API Best Practices guide →

Download OpenAPI description
Languages
Servers

https://api.modash.io/v1/

Instagram Raw Data

Instagram Raw Data API allows you to get public data anonymously from Instagram.

Access to this API is restricted. To get access to this API contact our support at hello@modash.io.

Our RAW API subscriptions come with a monthly limit for requests, every successful request consumes one from the limit. A 404 status code is treated as a successful request, indicating that the requested content could not be found.

Operations

TikTok Raw Data

TikTok Raw Data API allows you to get public data anonymously from Tiktok.

Access to this API is restricted. To get access to this API contact our support at hello@modash.io.

Our RAW API subscriptions come with a monthly limit for requests, every successful request consumes one from the limit. A 404 status code is treated as a successful request, indicating that the requested content could not be found.

Operations

TikTok User Info

Request

Returns details about the TikTok user profile

Security
accessToken
Query
urlstringrequired

Username (@handle) or user id, or url

curl -i -X GET \
  'https://api.modash.io/v1/raw/tiktok/user-info?url=string' \
  -H 'Authorization: Bearer <YOUR_token_HERE>'

Responses

Bodyapplication/json
user_infoobjectrequired
user_info.​userInfoobjectrequired
user_info.​userInfo.​userobjectrequired
user_info.​userInfo.​user.​idstringrequired
user_info.​userInfo.​user.​uniqueIdstringrequired
user_info.​userInfo.​user.​nicknamestringrequired
user_info.​userInfo.​user.​avatarThumbstring
user_info.​userInfo.​user.​avatarMediumstring
user_info.​userInfo.​user.​avatarLargerstring
user_info.​userInfo.​user.​signaturestring
user_info.​userInfo.​user.​verifiedboolean
user_info.​userInfo.​user.​secUidstringrequired
user_info.​userInfo.​user.​secretboolean
user_info.​userInfo.​user.​ftcboolean
user_info.​userInfo.​user.​openFavoriteboolean
user_info.​userInfo.​user.​bioLinkobject
user_info.​userInfo.​user.​privateAccountboolean
user_info.​userInfo.​statsobjectrequired
user_info.​userInfo.​stats.​followingCountnumberrequired
user_info.​userInfo.​stats.​followerCountnumberrequired
user_info.​userInfo.​stats.​heartCountnumberrequired
user_info.​userInfo.​stats.​videoCountnumberrequired
user_info.​userInfo.​stats.​diggCountnumberrequired
user_info.​userInfo.​stats.​heartnumberrequired
user_info.​userInfo.​shareMetaobject
successbooleanrequired
Response
application/json
{ "user_info": { "userInfo": {} }, "success": true }

TikTok User Feed

Request

Returns user feed information of a TikTok user by userId or username. The number of posts returned per page is not fixed and may vary per user.

Security
accessToken
Query
urlstringrequired

Username (@handle) or user id, or url

afterstring

Use maxCursor from the last page to get the next page

curl -i -X GET \
  'https://api.modash.io/v1/raw/tiktok/user-feed?url=string&after=string' \
  -H 'Authorization: Bearer <YOUR_token_HERE>'

Responses

Bodyapplication/json
user_feedobjectrequired
user_feed.​itemsArray of objectsrequired
user_feed.​items[].​idstringrequired
user_feed.​items[].​descstring
user_feed.​items[].​createTimenumber
user_feed.​items[].​videoobjectrequired
user_feed.​items[].​video.​idstringrequired
user_feed.​items[].​video.​heightnumber
user_feed.​items[].​video.​widthnumber
user_feed.​items[].​video.​durationnumber
user_feed.​items[].​video.​ratiostring
user_feed.​items[].​video.​coverstring
user_feed.​items[].​video.​originCoverstring
user_feed.​items[].​video.​dynamicCoverstring
user_feed.​items[].​video.​playAddrstring
user_feed.​items[].​video.​downloadAddrstring
user_feed.​items[].​video.​shareCoverArray of strings
user_feed.​items[].​video.​reflowCoverstring
user_feed.​items[].​authorobjectrequired
user_feed.​items[].​author.​idstringrequired
user_feed.​items[].​author.​uniqueIdstring
user_feed.​items[].​author.​nicknamestring
user_feed.​items[].​author.​avatarThumbstring
user_feed.​items[].​author.​avatarMediumstring
user_feed.​items[].​author.​avatarLargerstring
user_feed.​items[].​author.​signaturestring
user_feed.​items[].​author.​verifiedboolean
user_feed.​items[].​author.​secUidstring
user_feed.​items[].​author.​secretboolean
user_feed.​items[].​author.​ftcboolean
user_feed.​items[].​author.​openFavoriteboolean
user_feed.​items[].​author.​commentSettingnumber
user_feed.​items[].​author.​duetSettingnumber
user_feed.​items[].​author.​stitchSettingnumber
user_feed.​items[].​author.​privateAccountboolean
user_feed.​items[].​musicobjectrequired
user_feed.​items[].​music.​idstringrequired
user_feed.​items[].​music.​titlestring
user_feed.​items[].​music.​playUrlstring
user_feed.​items[].​music.​coverThumbstring
user_feed.​items[].​music.​coverMediumstring
user_feed.​items[].​music.​coverLargestring
user_feed.​items[].​music.​authorNamestring
user_feed.​items[].​music.​originalboolean
user_feed.​items[].​challengesArray of objects
user_feed.​items[].​statsobjectrequired
user_feed.​items[].​stats.​diggCountnumber
user_feed.​items[].​stats.​shareCountnumber
user_feed.​items[].​stats.​commentCountnumber
user_feed.​items[].​stats.​playCountnumber
user_feed.​items[].​stats.​collectCountnumber
user_feed.​items[].​originalItemboolean
user_feed.​items[].​officalItemboolean
user_feed.​items[].​textExtraArray of objects
user_feed.​items[].​secretboolean
user_feed.​items[].​forFriendboolean
user_feed.​items[].​showNotPassboolean
user_feed.​items[].​vl1boolean
user_feed.​items[].​itemMuteboolean
user_feed.​items[].​authorStatsobjectrequired
user_feed.​items[].​authorStats.​followingCountnumberrequired
user_feed.​items[].​authorStats.​followerCountnumberrequired
user_feed.​items[].​authorStats.​heartCountnumberrequired
user_feed.​items[].​authorStats.​videoCountnumberrequired
user_feed.​items[].​authorStats.​diggCountnumberrequired
user_feed.​items[].​authorStats.​heartnumberrequired
user_feed.​items[].​privateItemboolean
user_feed.​items[].​duetEnabledboolean
user_feed.​items[].​stitchEnabledboolean
user_feed.​items[].​shareEnabledboolean
user_feed.​items[].​isAdboolean
successbooleanrequired
hasMorebooleanrequired
maxCursorstringrequired
Response
application/json
{ "user_feed": { "items": [] }, "success": true, "hasMore": true, "maxCursor": "string" }

TikTok Challenge Feed

Request

Returns TikTok challenge (tag) feed based on challenge id

Security
accessToken
Query
urlstringrequired

TikTok challengeId

afterstring

Use maxCursor from the last page to get the next page

curl -i -X GET \
  'https://api.modash.io/v1/raw/tiktok/challenge-feed?url=string&after=string' \
  -H 'Authorization: Bearer <YOUR_token_HERE>'

Responses

Bodyapplication/json
challenge_feedobjectrequired
challenge_feed.​itemListArray of objectsrequired
challenge_feed.​itemList[].​idstringrequired
challenge_feed.​itemList[].​descstring
challenge_feed.​itemList[].​createTimenumber
challenge_feed.​itemList[].​videoobjectrequired
challenge_feed.​itemList[].​video.​idstringrequired
challenge_feed.​itemList[].​video.​heightnumber
challenge_feed.​itemList[].​video.​widthnumber
challenge_feed.​itemList[].​video.​durationnumber
challenge_feed.​itemList[].​video.​ratiostring
challenge_feed.​itemList[].​video.​coverstring
challenge_feed.​itemList[].​video.​originCoverstring
challenge_feed.​itemList[].​video.​dynamicCoverstring
challenge_feed.​itemList[].​video.​playAddrstring
challenge_feed.​itemList[].​video.​downloadAddrstring
challenge_feed.​itemList[].​video.​shareCoverArray of strings
challenge_feed.​itemList[].​video.​reflowCoverstring
challenge_feed.​itemList[].​authorobjectrequired
challenge_feed.​itemList[].​author.​idstringrequired
challenge_feed.​itemList[].​author.​uniqueIdstring
challenge_feed.​itemList[].​author.​nicknamestring
challenge_feed.​itemList[].​author.​avatarThumbstring
challenge_feed.​itemList[].​author.​avatarMediumstring
challenge_feed.​itemList[].​author.​avatarLargerstring
challenge_feed.​itemList[].​author.​signaturestring
challenge_feed.​itemList[].​author.​verifiedboolean
challenge_feed.​itemList[].​author.​secUidstring
challenge_feed.​itemList[].​author.​secretboolean
challenge_feed.​itemList[].​author.​ftcboolean
challenge_feed.​itemList[].​author.​openFavoriteboolean
challenge_feed.​itemList[].​author.​commentSettingnumber
challenge_feed.​itemList[].​author.​duetSettingnumber
challenge_feed.​itemList[].​author.​stitchSettingnumber
challenge_feed.​itemList[].​author.​privateAccountboolean
challenge_feed.​itemList[].​musicobjectrequired
challenge_feed.​itemList[].​music.​idstringrequired
challenge_feed.​itemList[].​music.​titlestring
challenge_feed.​itemList[].​music.​playUrlstring
challenge_feed.​itemList[].​music.​coverThumbstring
challenge_feed.​itemList[].​music.​coverMediumstring
challenge_feed.​itemList[].​music.​coverLargestring
challenge_feed.​itemList[].​music.​authorNamestring
challenge_feed.​itemList[].​music.​originalboolean
challenge_feed.​itemList[].​challengesArray of objects
challenge_feed.​itemList[].​statsobjectrequired
challenge_feed.​itemList[].​stats.​diggCountnumber
challenge_feed.​itemList[].​stats.​shareCountnumber
challenge_feed.​itemList[].​stats.​commentCountnumber
challenge_feed.​itemList[].​stats.​playCountnumber
challenge_feed.​itemList[].​stats.​collectCountnumber
challenge_feed.​itemList[].​originalItemboolean
challenge_feed.​itemList[].​officalItemboolean
challenge_feed.​itemList[].​textExtraArray of objects
challenge_feed.​itemList[].​secretboolean
challenge_feed.​itemList[].​forFriendboolean
challenge_feed.​itemList[].​showNotPassboolean
challenge_feed.​itemList[].​vl1boolean
challenge_feed.​itemList[].​itemMuteboolean
challenge_feed.​itemList[].​authorStatsobjectrequired
challenge_feed.​itemList[].​authorStats.​followingCountnumberrequired
challenge_feed.​itemList[].​authorStats.​followerCountnumberrequired
challenge_feed.​itemList[].​authorStats.​heartCountnumberrequired
challenge_feed.​itemList[].​authorStats.​videoCountnumberrequired
challenge_feed.​itemList[].​authorStats.​diggCountnumberrequired
challenge_feed.​itemList[].​authorStats.​heartnumberrequired
challenge_feed.​itemList[].​privateItemboolean
challenge_feed.​itemList[].​duetEnabledboolean
challenge_feed.​itemList[].​stitchEnabledboolean
challenge_feed.​itemList[].​shareEnabledboolean
challenge_feed.​itemList[].​isAdboolean
challenge_feed.​stickersOnItemobject
challenge_feed.​hasMorebooleanrequired
challenge_feed.​maxCursorstringrequired
successbooleanrequired
Response
application/json
{ "challenge_feed": { "itemList": [], "stickersOnItem": {}, "hasMore": true, "maxCursor": "string" }, "success": true }

TikTok Challenge Info

Request

Returns TikTok challenge info based on challenge id

Security
accessToken
Query
urlstringrequired

TikTok challengeId or challenge hashtag

curl -i -X GET \
  'https://api.modash.io/v1/raw/tiktok/challenge-info?url=string' \
  -H 'Authorization: Bearer <YOUR_token_HERE>'

Responses

Bodyapplication/json
challengeobjectrequired
challenge.​challengeInfoobjectrequired
challenge.​challengeInfo.​challengeobjectrequired
challenge.​challengeInfo.​challenge.​idstringrequired
challenge.​challengeInfo.​challenge.​titlestringrequired
challenge.​challengeInfo.​challenge.​descstringrequired
challenge.​challengeInfo.​challenge.​profileLargerstringrequired
challenge.​challengeInfo.​challenge.​profileMediumstringrequired
challenge.​challengeInfo.​challenge.​profileThumbstringrequired
challenge.​challengeInfo.​challenge.​coverLargerstringrequired
challenge.​challengeInfo.​challenge.​coverMediumstringrequired
challenge.​challengeInfo.​challenge.​coverThumbstringrequired
challenge.​challengeInfo.​challenge.​isCommercebooleanrequired
challenge.​challengeInfo.​challenge.​splitTitlestringrequired
challenge.​challengeInfo.​statsobjectrequired
challenge.​challengeInfo.​stats.​videoCountnumberrequired
challenge.​challengeInfo.​stats.​viewCountnumberrequired
successbooleanrequired
Response
application/json
{ "challenge": { "challengeInfo": {} }, "success": true }

TikTok Comments

Request

Returns TikTok comments list based on media id

Security
accessToken
Query
urlstringrequired

TikTok media ID

afterstring

Use maxCursor from the last page to get the next page

curl -i -X GET \
  'https://api.modash.io/v1/raw/tiktok/comments?url=string&after=string' \
  -H 'Authorization: Bearer <YOUR_token_HERE>'

Responses

Bodyapplication/json
commentsobjectrequired
comments.​commentsArray of objectsrequired
comments.​comments[].​cidstringrequired
comments.​comments[].​textstringrequired
comments.​comments[].​aweme_idstring
comments.​comments[].​create_timenumber
comments.​comments[].​digg_countnumber
comments.​comments[].​statusnumber
comments.​comments[].​userobjectrequired
comments.​comments[].​user.​nicknamestringrequired
comments.​comments[].​user.​avatar_thumbobjectrequired
comments.​comments[].​user.​avatar_thumb.​uristring
comments.​comments[].​user.​avatar_thumb.​url_listArray of strings
comments.​comments[].​user.​custom_verifystring
comments.​comments[].​user.​unique_idstring
comments.​comments[].​user.​enterprise_verify_reasonstring
comments.​comments[].​user.​sec_uidstringrequired
comments.​comments[].​reply_idstring
comments.​comments[].​text_extraArray of objectsrequired
comments.​comments[].​text_extra[].​startnumber
comments.​comments[].​text_extra[].​endnumber
comments.​comments[].​text_extra[].​user_idstring
comments.​comments[].​text_extra[].​hashtag_namestring
comments.​comments[].​text_extra[].​hashtag_idstring
comments.​comments[].​text_extra[].​sec_uidstring
comments.​comments[].​label_textstring
comments.​comments[].​label_typenumber
comments.​comments[].​reply_comment_totalnumber
comments.​comments[].​reply_to_reply_idstring
comments.​comments[].​reply_to_useridstring
comments.​comments[].​reply_to_usernamestring
comments.​comments[].​is_author_diggedbooleanrequired
comments.​comments[].​reply_commentArray of objectsrequired
comments.​comments[].​reply_comment[].​cidstringrequired
comments.​comments[].​reply_comment[].​textstringrequired
comments.​comments[].​reply_comment[].​aweme_idstring
comments.​comments[].​reply_comment[].​create_timenumber
comments.​comments[].​reply_comment[].​digg_countnumber
comments.​comments[].​reply_comment[].​statusnumber
comments.​comments[].​reply_comment[].​userobjectrequired
comments.​comments[].​reply_comment[].​user.​nicknamestringrequired
comments.​comments[].​reply_comment[].​user.​avatar_thumbobjectrequired
comments.​comments[].​reply_comment[].​user.​custom_verifystring
comments.​comments[].​reply_comment[].​user.​unique_idstring
comments.​comments[].​reply_comment[].​user.​enterprise_verify_reasonstring
comments.​comments[].​reply_comment[].​user.​sec_uidstringrequired
comments.​comments[].​reply_comment[].​reply_idstring
comments.​comments[].​reply_comment[].​text_extraArray of objects
comments.​comments[].​reply_comment[].​label_textstring
comments.​comments[].​reply_comment[].​label_typenumber
comments.​comments[].​reply_comment[].​reply_comment_totalnumber
comments.​comments[].​reply_comment[].​reply_to_reply_idstring
comments.​comments[].​reply_comment[].​reply_to_useridstring
comments.​comments[].​reply_comment[].​reply_to_usernamestring
comments.​comments[].​reply_comment[].​is_author_diggedbooleanrequired
comments.​hasMorebooleanrequired
comments.​maxCursorstringrequired
successbooleanrequired
Response
application/json
{ "comments": { "comments": [], "hasMore": true, "maxCursor": "string" }, "success": true }

TikTok Comments Replies

Request

Returns TikTok comment replies list based on comment id

Security
accessToken
Query
urlstringrequired

TikTok media ID

comment_idstringrequired

TikTok comment ID (cid)

afterstring

Use maxCursor from the last page to get the next page

curl -i -X GET \
  'https://api.modash.io/v1/raw/tiktok/comments-replies?url=string&comment_id=string&after=string' \
  -H 'Authorization: Bearer <YOUR_token_HERE>'

Responses

Bodyapplication/json
commentsobjectrequired
comments.​commentsArray of objectsrequired
comments.​comments[].​cidstringrequired
comments.​comments[].​textstringrequired
comments.​comments[].​aweme_idstring
comments.​comments[].​create_timenumber
comments.​comments[].​digg_countnumber
comments.​comments[].​statusnumber
comments.​comments[].​userobjectrequired
comments.​comments[].​user.​nicknamestringrequired
comments.​comments[].​user.​avatar_thumbobjectrequired
comments.​comments[].​user.​avatar_thumb.​uristring
comments.​comments[].​user.​avatar_thumb.​url_listArray of strings
comments.​comments[].​user.​custom_verifystring
comments.​comments[].​user.​unique_idstring
comments.​comments[].​user.​enterprise_verify_reasonstring
comments.​comments[].​user.​sec_uidstringrequired
comments.​comments[].​reply_idstring
comments.​comments[].​text_extraArray of objectsrequired
comments.​comments[].​text_extra[].​startnumber
comments.​comments[].​text_extra[].​endnumber
comments.​comments[].​text_extra[].​user_idstring
comments.​comments[].​text_extra[].​hashtag_namestring
comments.​comments[].​text_extra[].​hashtag_idstring
comments.​comments[].​text_extra[].​sec_uidstring
comments.​comments[].​label_textstring
comments.​comments[].​label_typenumber
comments.​comments[].​reply_comment_totalnumber
comments.​comments[].​reply_to_reply_idstring
comments.​comments[].​reply_to_useridstring
comments.​comments[].​reply_to_usernamestring
comments.​comments[].​is_author_diggedbooleanrequired
comments.​comments[].​reply_commentArray of objectsrequired
comments.​comments[].​reply_comment[].​cidstringrequired
comments.​comments[].​reply_comment[].​textstringrequired
comments.​comments[].​reply_comment[].​aweme_idstring
comments.​comments[].​reply_comment[].​create_timenumber
comments.​comments[].​reply_comment[].​digg_countnumber
comments.​comments[].​reply_comment[].​statusnumber
comments.​comments[].​reply_comment[].​userobjectrequired
comments.​comments[].​reply_comment[].​user.​nicknamestringrequired
comments.​comments[].​reply_comment[].​user.​avatar_thumbobjectrequired
comments.​comments[].​reply_comment[].​user.​custom_verifystring
comments.​comments[].​reply_comment[].​user.​unique_idstring
comments.​comments[].​reply_comment[].​user.​enterprise_verify_reasonstring
comments.​comments[].​reply_comment[].​user.​sec_uidstringrequired
comments.​comments[].​reply_comment[].​reply_idstring
comments.​comments[].​reply_comment[].​text_extraArray of objects
comments.​comments[].​reply_comment[].​label_textstring
comments.​comments[].​reply_comment[].​label_typenumber
comments.​comments[].​reply_comment[].​reply_comment_totalnumber
comments.​comments[].​reply_comment[].​reply_to_reply_idstring
comments.​comments[].​reply_comment[].​reply_to_useridstring
comments.​comments[].​reply_comment[].​reply_to_usernamestring
comments.​comments[].​reply_comment[].​is_author_diggedbooleanrequired
comments.​hasMorebooleanrequired
comments.​maxCursorstringrequired
successbooleanrequired
Response
application/json
{ "comments": { "comments": [], "hasMore": true, "maxCursor": "string" }, "success": true }

TikTok Music Info

Request

Returns music info by id

Security
accessToken
Query
urlstringrequired

TikTok music ID

afterstring

Use maxCursor from the last page to get the next page

curl -i -X GET \
  'https://api.modash.io/v1/raw/tiktok/music-info?url=string&after=string' \
  -H 'Authorization: Bearer <YOUR_token_HERE>'

Responses

Bodyapplication/json
musicobjectrequired
music.​musicInfoobjectrequired
music.​musicInfo.​musicobjectrequired
music.​musicInfo.​music.​idstringrequired
music.​musicInfo.​music.​titlestringrequired
music.​musicInfo.​music.​playUrlstringrequired
music.​musicInfo.​music.​coverThumbstringrequired
music.​musicInfo.​music.​coverMediumstringrequired
music.​musicInfo.​music.​coverLargestringrequired
music.​musicInfo.​music.​authorNamestringrequired
music.​musicInfo.​music.​originalbooleanrequired
music.​musicInfo.​music.​durationnumberrequired
music.​musicInfo.​music.​albumstringrequired
music.​musicInfo.​authorobject
music.​musicInfo.​statsobjectrequired
music.​musicInfo.​stats.​videoCountnumberrequired
music.​musicInfo.​artistobjectrequired
music.​musicInfo.​artist.​idstringrequired
music.​musicInfo.​artist.​uniqueIdstringrequired
music.​musicInfo.​artist.​nicknamestringrequired
music.​musicInfo.​artist.​avatarThumbstringrequired
music.​musicInfo.​artist.​avatarMediumstringrequired
music.​musicInfo.​artist.​avatarLargerstringrequired
music.​musicInfo.​artist.​signaturestringrequired
music.​musicInfo.​artist.​verifiedbooleanrequired
music.​musicInfo.​artist.​secUidstringrequired
music.​musicInfo.​artist.​secretbooleanrequired
music.​musicInfo.​artist.​ftcbooleanrequired
music.​musicInfo.​artist.​openFavoritebooleanrequired
music.​musicInfo.​artist.​commentSettingnumberrequired
music.​musicInfo.​artist.​duetSettingnumberrequired
music.​musicInfo.​artist.​stitchSettingnumberrequired
music.​musicInfo.​artist.​privateAccountbooleanrequired
music.​musicInfo.​artistsArray of objectsrequired
music.​musicInfo.​artists[].​idstringrequired
music.​musicInfo.​artists[].​uniqueIdstringrequired
music.​musicInfo.​artists[].​nicknamestringrequired
music.​musicInfo.​artists[].​avatarThumbstringrequired
music.​musicInfo.​artists[].​avatarMediumstringrequired
music.​musicInfo.​artists[].​avatarLargerstringrequired
music.​musicInfo.​artists[].​signaturestringrequired
music.​musicInfo.​artists[].​verifiedbooleanrequired
music.​musicInfo.​artists[].​secUidstringrequired
music.​musicInfo.​artists[].​secretbooleanrequired
music.​musicInfo.​artists[].​ftcbooleanrequired
music.​musicInfo.​artists[].​openFavoritebooleanrequired
music.​musicInfo.​artists[].​commentSettingnumberrequired
music.​musicInfo.​artists[].​duetSettingnumberrequired
music.​musicInfo.​artists[].​stitchSettingnumberrequired
music.​musicInfo.​artists[].​privateAccountbooleanrequired
successbooleanrequired
Response
application/json
{ "music": { "musicInfo": {} }, "success": true }

TikTok Music Feed

Request

Returns TikTok music feed by id. Up to 30 posts per page

Security
accessToken
Query
urlstringrequired

TikTok music ID

afterstring

Use maxCursor from the last page to get the next page

curl -i -X GET \
  'https://api.modash.io/v1/raw/tiktok/music-feed?url=string&after=string' \
  -H 'Authorization: Bearer <YOUR_token_HERE>'

Responses

Bodyapplication/json
successbooleanrequired
music_feedobjectrequired
music_feed.​itemListArray of objectsrequired
music_feed.​itemList[].​idstringrequired
music_feed.​itemList[].​descstring
music_feed.​itemList[].​createTimenumber
music_feed.​itemList[].​videoobjectrequired
music_feed.​itemList[].​video.​idstringrequired
music_feed.​itemList[].​video.​heightnumber
music_feed.​itemList[].​video.​widthnumber
music_feed.​itemList[].​video.​durationnumber
music_feed.​itemList[].​video.​ratiostring
music_feed.​itemList[].​video.​coverstring
music_feed.​itemList[].​video.​originCoverstring
music_feed.​itemList[].​video.​dynamicCoverstring
music_feed.​itemList[].​video.​playAddrstring
music_feed.​itemList[].​video.​downloadAddrstring
music_feed.​itemList[].​video.​shareCoverArray of strings
music_feed.​itemList[].​video.​reflowCoverstring
music_feed.​itemList[].​authorobjectrequired
music_feed.​itemList[].​author.​idstringrequired
music_feed.​itemList[].​author.​uniqueIdstring
music_feed.​itemList[].​author.​nicknamestring
music_feed.​itemList[].​author.​avatarThumbstring
music_feed.​itemList[].​author.​avatarMediumstring
music_feed.​itemList[].​author.​avatarLargerstring
music_feed.​itemList[].​author.​signaturestring
music_feed.​itemList[].​author.​verifiedboolean
music_feed.​itemList[].​author.​secUidstring
music_feed.​itemList[].​author.​secretboolean
music_feed.​itemList[].​author.​ftcboolean
music_feed.​itemList[].​author.​openFavoriteboolean
music_feed.​itemList[].​author.​commentSettingnumber
music_feed.​itemList[].​author.​duetSettingnumber
music_feed.​itemList[].​author.​stitchSettingnumber
music_feed.​itemList[].​author.​privateAccountboolean
music_feed.​itemList[].​musicobjectrequired
music_feed.​itemList[].​music.​idstringrequired
music_feed.​itemList[].​music.​titlestring
music_feed.​itemList[].​music.​playUrlstring
music_feed.​itemList[].​music.​coverThumbstring
music_feed.​itemList[].​music.​coverMediumstring
music_feed.​itemList[].​music.​coverLargestring
music_feed.​itemList[].​music.​authorNamestring
music_feed.​itemList[].​music.​originalboolean
music_feed.​itemList[].​challengesArray of objects
music_feed.​itemList[].​statsobjectrequired
music_feed.​itemList[].​stats.​diggCountnumber
music_feed.​itemList[].​stats.​shareCountnumber
music_feed.​itemList[].​stats.​commentCountnumber
music_feed.​itemList[].​stats.​playCountnumber
music_feed.​itemList[].​stats.​collectCountnumber
music_feed.​itemList[].​originalItemboolean
music_feed.​itemList[].​officalItemboolean
music_feed.​itemList[].​textExtraArray of objects
music_feed.​itemList[].​secretboolean
music_feed.​itemList[].​forFriendboolean
music_feed.​itemList[].​showNotPassboolean
music_feed.​itemList[].​vl1boolean
music_feed.​itemList[].​itemMuteboolean
music_feed.​itemList[].​authorStatsobjectrequired
music_feed.​itemList[].​authorStats.​followingCountnumberrequired
music_feed.​itemList[].​authorStats.​followerCountnumberrequired
music_feed.​itemList[].​authorStats.​heartCountnumberrequired
music_feed.​itemList[].​authorStats.​videoCountnumberrequired
music_feed.​itemList[].​authorStats.​diggCountnumberrequired
music_feed.​itemList[].​authorStats.​heartnumberrequired
music_feed.​itemList[].​privateItemboolean
music_feed.​itemList[].​duetEnabledboolean
music_feed.​itemList[].​stitchEnabledboolean
music_feed.​itemList[].​shareEnabledboolean
music_feed.​itemList[].​isAdboolean
hasMorebooleanrequired
maxCursorstringrequired
Response
application/json
{ "success": true, "music_feed": { "itemList": [] }, "hasMore": true, "maxCursor": "string" }

TikTok Search Users

Request

Returns TikTok users' search result by a given keyword

Security
accessToken
Query
keywordstringrequired

Search keyword

curl -i -X GET \
  'https://api.modash.io/v1/raw/tiktok/search-users?keyword=string' \
  -H 'Authorization: Bearer <YOUR_token_HERE>'

Responses

Bodyapplication/json
resultobjectrequired
result.​user_listArray of objectsrequired
result.​user_list[].​user_infoobjectrequired
result.​user_list[].​user_info.​uidstringrequired
result.​user_list[].​user_info.​nicknamestringrequired
result.​user_list[].​user_info.​signaturestringrequired
result.​user_list[].​user_info.​avatar_thumbobjectrequired
result.​user_list[].​user_info.​avatar_thumb.​uristringrequired
result.​user_list[].​user_info.​avatar_thumb.​url_listArray of stringsrequired
result.​user_list[].​user_info.​avatar_thumb.​widthnumberrequired
result.​user_list[].​user_info.​avatar_thumb.​heightnumberrequired
result.​user_list[].​user_info.​follower_countnumberrequired
result.​user_list[].​user_info.​custom_verifystringrequired
result.​user_list[].​user_info.​unique_idstringrequired
result.​user_list[].​user_info.​enterprise_verify_reasonstringrequired
result.​user_list[].​user_info.​sec_uidstringrequired
successbooleanrequired
Response
application/json
{ "result": { "user_list": [] }, "success": true }

TikTok Media Info

Request

Returns TikTok media info by id

Security
accessToken
Query
urlstringrequired

TikTok media/post ID

curl -i -X GET \
  'https://api.modash.io/v1/raw/tiktok/media-info?url=string' \
  -H 'Authorization: Bearer <YOUR_token_HERE>'

Responses

Bodyapplication/json
mediaobjectrequired
media.​itemInfoobjectrequired
media.​itemInfo.​itemStructobjectrequired
media.​itemInfo.​itemStruct.​idstringrequired
media.​itemInfo.​itemStruct.​descstring
media.​itemInfo.​itemStruct.​createTimenumber
media.​itemInfo.​itemStruct.​videoobject
media.​itemInfo.​itemStruct.​authorobject
media.​itemInfo.​itemStruct.​musicobject
media.​itemInfo.​itemStruct.​challengesArray of objects
media.​itemInfo.​itemStruct.​statsobject
media.​itemInfo.​itemStruct.​isActivityItemboolean
media.​itemInfo.​itemStruct.​duetInfoobject
media.​itemInfo.​itemStruct.​textExtraArray of objects
media.​itemInfo.​itemStruct.​secretboolean
media.​itemInfo.​itemStruct.​showNotPassboolean
media.​itemInfo.​itemStruct.​vl1boolean
media.​itemInfo.​itemStruct.​itemMuteboolean
media.​itemInfo.​itemStruct.​privateItemboolean
media.​itemInfo.​itemStruct.​duetEnabledboolean
media.​itemInfo.​itemStruct.​stitchEnabledboolean
media.​itemInfo.​itemStruct.​shareEnabledboolean
media.​itemInfo.​itemStruct.​stickersOnItemArray of objects
media.​itemInfo.​itemStruct.​isAdboolean
media.​itemInfo.​itemStruct.​locationobject
media.​itemInfo.​shareMetaobject
successbooleanrequired
Response
application/json
{ "media": { "itemInfo": {} }, "success": true }

TikTok Media Download

Request

Returns TikTok media downloaded video by id

Security
accessToken
Query
urlstringrequired

TikTok media/post ID

curl -i -X GET \
  'https://api.modash.io/v1/raw/tiktok/media-download?url=string' \
  -H 'Authorization: Bearer <YOUR_token_HERE>'

Responses

Bodyapplication/json
string(binary)
Response
application/json
"string"

YouTube Raw Data

YouTube Raw Data API allows you to get public data anonymously from YouTube.

Access to this API is restricted. To get access to this API contact our support at hello@modash.io.

Our RAW API subscriptions come with a monthly limit for requests, every successful request consumes one from the limit. A 404 status code is treated as a successful request, indicating that the requested content could not be found.

Operations

User Account

API for Modash user account management

Operations