DocumentationREST APIReal-time data
SocioScrapper API Documentation
Welcome to the SocioScrapper API documentation. Our API provides real-time access to social media data from all major platforms.
Platforms
TikTok, Instagram, YouTube
Auth
Token parameter per request
Response
JSON payloads
Resources
SDKs, changelog
Quick start
Three steps to your first request.
- Generate an API token in the dashboard.
- Pick an endpoint and send a GET request with your parameters.
- Review response data and monitor usage in the dashboard.
Sample requestGET
/instagram/user/info?username=daviddobrik&token=YOUR-TOKEN
{
"success": true,
"data": {
"username": "daviddobrik",
"followers": 364173221
}
}Use your token as the token query parameter.
Base URL
https://api.socioscrapper.com/v1All endpoints are relative to this base URL.
Response Format
All API responses are returned in JSON format with the following structure:
{
"success": true,
"data": {
// Response data here
},
"meta": {
"credits_used": 1,
"credits_remaining": 99
}
}