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.
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.
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.
https://api.modash.io/v1/raw/tiktok/user-info
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.modash.io/v1/raw/tiktok/user-info?url=string' \
-H 'Authorization: Bearer <YOUR_token_HERE>'
https://api.modash.io/v1/raw/tiktok/user-feed
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.modash.io/v1/raw/tiktok/user-feed?url=string&after=string' \
-H 'Authorization: Bearer <YOUR_token_HERE>'
{ "user_feed": { "items": [ … ] }, "success": true, "hasMore": true, "maxCursor": "string" }
https://api.modash.io/v1/raw/tiktok/challenge-feed
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.modash.io/v1/raw/tiktok/challenge-feed?url=string&after=string' \
-H 'Authorization: Bearer <YOUR_token_HERE>'
{ "challenge_feed": { "itemList": [ … ], "stickersOnItem": { … }, "hasMore": true, "maxCursor": "string" }, "success": true }
https://api.modash.io/v1/raw/tiktok/challenge-info
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.modash.io/v1/raw/tiktok/challenge-info?url=string' \
-H 'Authorization: Bearer <YOUR_token_HERE>'
{ "challenge": { "challengeInfo": { … } }, "success": true }
https://api.modash.io/v1/raw/tiktok/comments
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.modash.io/v1/raw/tiktok/comments?url=string&after=string' \
-H 'Authorization: Bearer <YOUR_token_HERE>'
{ "comments": { "comments": [ … ], "hasMore": true, "maxCursor": "string" }, "success": true }
https://api.modash.io/v1/raw/tiktok/comments-replies
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
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>'
{ "comments": { "comments": [ … ], "hasMore": true, "maxCursor": "string" }, "success": true }
https://api.modash.io/v1/raw/tiktok/music-info
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.modash.io/v1/raw/tiktok/music-info?url=string&after=string' \
-H 'Authorization: Bearer <YOUR_token_HERE>'
https://api.modash.io/v1/raw/tiktok/music-feed
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.modash.io/v1/raw/tiktok/music-feed?url=string&after=string' \
-H 'Authorization: Bearer <YOUR_token_HERE>'
{ "success": true, "music_feed": { "itemList": [ … ] }, "hasMore": true, "maxCursor": "string" }
https://api.modash.io/v1/raw/tiktok/search-users
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.modash.io/v1/raw/tiktok/search-users?keyword=string' \
-H 'Authorization: Bearer <YOUR_token_HERE>'
https://api.modash.io/v1/raw/tiktok/media-info
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.modash.io/v1/raw/tiktok/media-info?url=string' \
-H 'Authorization: Bearer <YOUR_token_HERE>'
https://api.modash.io/v1/raw/tiktok/media-download
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.modash.io/v1/raw/tiktok/media-download?url=string' \
-H 'Authorization: Bearer <YOUR_token_HERE>'
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.