- Introduction
- Authentication
- Synchronous (real-time) & asynchronous (callback) requests
- TikTok
- Targets
- Parameters
- Postman Collection
- License
With our Social Media Scraping API, you can gather most important data from Social Media websites. Currently supporting Instagram and TikTok.
Once you have an active Social Media Scraping API subscription, you can set your password in the dashboard. To do so, select Social Media under Scraping APIs list. Then, head over to the Authentication method tab. Click the pencil icon and enter your password.
With Social Media Scraping API, you can scrape choosing synchronous requests to receive data instantly or asynchronous requests to receive data based on a callback function.
POST
https://scraper-api.smartproxy.com/v1/scrape
POST
https://scraper-api.smartproxy.com/v1/task
GET
https://scraper-api.smartproxy.com/v1/task/{{task_id}}/results?type=raw
GET
https://scraper-api.smartproxy.com/v1/task/{{task_id}}/results?type=Parsed
Instagram can be targeted using direct URL.
The instagram_post
, instagram_profile
, and instagram_reel
targets allow you to scrape Instagram's HTML and receive data parsed in JSON.
The instagram_graphql_post
, instagram_graphql_profile
and instagram_graphql_hashtag
target allows you to scrape Instagram's GraphQL API endpoint and receive data parsed in JSON.
API Link: https://scraper-api.smartproxy.com/v1/scrape
POST /scrape
Payload type: JSON
Required parameters:
url
(in this example, https://www.instagram.com/nba)
target
(in this example, instagram_profile)
Parameter | Type | Description |
---|---|---|
url |
url |
Instagram profile URL |
target |
string |
target |
locale |
string |
language locale |
geo |
string |
geolocation |
First 2 top & bottom ads and product listing info
{
"data": {
"content": {
"account": {
"username": "nba",
"verified": true
},
"stats": {
"posts": "56,793",
"followers": "76.5M",
"following": "1,108"
},
"biography": {
"name": "NBA",
"occupation": "Sports league",
"description": "FRIDAY on ESPN ⤵️\n7:30pm/et: HEAT/BUCKS\n10:00pm/et: THUNDER/SUNS",
"url": "linkin.bio/nba"
},
"posts": [
{
"href": "https://www.instagram.com/p/CpCLWcSMTxa/",
"description": "18 teams in action, 9 winners Thursday night!",
"image": "https://scontent-lga3-1.cdninstagram.com/v/t51.2885-15/332394535_1174583859869004_5699117325227109932_n.jpg?stp=dst-jpg_e35_p1080x1080&_nc_ht=scontent-lga3-1.cdninstagram.com&_nc_cat=1&_nc_ohc=T73dZU-MUfoAX9IX02X&edm=AOQ1c0wBAAAA&ccb=7-5&oh=00_AfCxqyoh2w8UI6PujgGmyzJ4Kmi5thgX6pCarwcnsn7PkQ&oe=63FCF30F&_nc_sid=8fd12b"
},
{
"href": "https://www.instagram.com/p/CpCLT9Ps1CP/",
"description": "43 for @laurimarkkanen in the OT W!",
"image": "https://scontent-lga3-1.cdninstagram.com/v/t51.2885-15/332566741_1254687808779337_9193264579495047501_n.jpg?stp=dst-jpg_e35_p1080x1080&_nc_ht=scontent-lga3-1.cdninstagram.com&_nc_cat=1&_nc_ohc=T2jea-Ab0O0AX8uQmbV&edm=AOQ1c0wBAAAA&ccb=7-5&oh=00_AfD6iiM7_ss2K1VQ4LHyoX_325WVdvUMQayg5mZlRsq_Zg&oe=63FE618B&_nc_sid=8fd12b"
},
...
],
"relatedAccounts": [
{
"username": "houseofhighlights",
"name": "House of Highlights",
"verified": false
},
{
"username": "sportscenter",
"name": "SportsCenter",
"verified": false
},
...
]
},
"errors": [],
"status_code": 12000
},
"task_id": "7034884446637549569",
"url": "https://www.instagram.com/nba"
}
Programming Language | Example location | Download |
---|---|---|
Python | python/instagramprofile.py | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/python/instagramprofile.py > instagramprofile.py |
PHP | php/instagramprofile.php | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/php/instagramprofile.php > instagramprofile.php |
Node.js | nodejs/instagramprofile.js | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/nodejs/instagramprofile.js > instagramprofile.js |
API Link: https://scraper-api.smartproxy.com/v1/scrape
POST /scrape
Payload type: JSON
Required parameters:
url
(in this example, https://www.instagram.com/nba)
target
(in this example, instagram_graphql_profile)
Parameter | Type | Description |
---|---|---|
url |
url |
Instagram profile URL |
target |
string |
target |
locale |
string |
language locale |
geo |
string |
geolocation |
Programming Language | Example location | Download |
---|---|---|
Python | python/instagramgraphqlprofile.py | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/python/instagramgraphqlprofile.py > instagramgraphqlprofile.py |
PHP | php/instagramgraphqlprofile.php | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/php/instagramgraphqlprofile.php > instagramgraphqlprofile.php |
Node.js | nodejs/instagramgraphqlprofile.js | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/nodejs/instagramgraphqlprofile.js > instagramgraphqlprofile.js |
API Link: https://scraper-api.smartproxy.com/v1/scrape
POST /scrape
Payload type: JSON
Required parameters:
url
(in this example, https://www.instagram.com/p/ChYHpdAvnob/)
target
(in this example, instagram_post)
Parameter | Type | Description |
---|---|---|
url |
url |
Instagram post URL |
target |
string |
target |
locale |
string |
language locale |
geo |
string |
geolocation |
Programming Language | Example location | Download |
---|---|---|
Python | python/instagrampost.py | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/python/instagrampost.py > instagrampost.py |
PHP | php/instagrampost.php | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/php/instagrampost.php > instagrampost.php |
Node.js | nodejs/instagrampost.js | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/nodejs/instagrampost.js > instagrampost.js |
API Link: https://scraper-api.smartproxy.com/v1/scrape
POST /scrape
Payload type: JSON
Required parameters:
url
(in this example, https://www.instagram.com/p/ChYHpdAvnob/)
target
(in this example, instagram_graphql_post)
Parameter | Type | Description |
---|---|---|
url |
url |
Instagram post URL |
target |
string |
target |
locale |
string |
language locale |
geo |
string |
geolocation |
Programming Language | Example location | Download |
---|---|---|
Python | python/instagramgraphqlpost.py | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/python/instagramgraphqlpost.py > instagramgraphqlpost.py |
PHP | php/instagramgraphqlpost.php | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/php/instagramgraphqlpost.php > instagramgraphqlpost.php |
Node.js | nodejs/instagramgraphqlpost.js | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/nodejs/instagramgraphqlpost.js > instagramgraphqlpost.js |
API Link: https://scraper-api.smartproxy.com/v1/scrape
POST /scrape
Payload type: JSON
Required parameters:
url
(in this example, https://www.instagram.com/reel/ClfPAdQgqTc/)
target
(in this example, instagram_reel)
Parameter | Type | Description |
---|---|---|
url |
url |
Instagram reel URL |
target |
string |
target |
locale |
string |
language locale |
geo |
string |
geolocation |
Programming Language | Example location | Download |
---|---|---|
Python | python/instagramreel.py | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/python/instagramreel.py > instagramreel.py |
PHP | php/instagramreel.php | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/php/instagramreel.php > instagramreel.php |
Node.js | nodejs/instagramreel.js | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/nodejs/instagramreel.js > instagramreel.js |
API Link: https://scraper-api.smartproxy.com/v1/scrape
POST /scrape
Payload type: JSON
Required parameters:
url
(in this example, https://www.instagram.com/explore/tags/nba/)
target
(in this example, instagram_graphql_hashtag)
Parameter | Type | Description |
---|---|---|
url |
url |
Instagram hashtag URL |
target |
string |
target |
locale |
string |
language locale |
geo |
string |
geolocation |
Programming Language | Example location | Download |
---|---|---|
Python | python/instagramgraphqlhashtag.py | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/python/instagramgraphqlhashtag.py > instagramgraphqlhashtag.py |
PHP | php/instagramgraphqlhashtag.php | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/php/instagramgraphqlhashtag.php > instagramgraphqlhashtag.php |
Node.js | nodejs/instagramgraphqlhashtag.js | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/nodejs/instagramgraphqlhashtag.js > instagramgraphqlhashtag.js |
API Link: https://scraper-api.smartproxy.com/v1/task
POST /task
Payload type: JSON
Required parameters:
url
(in this example, https://www.instagram.com/p/ChYHpdAvnob/)
target
(in this example, instagram_post)
Parameter | Type | Description |
---|---|---|
url |
url |
Instagram post URL |
target |
string |
target |
locale |
string |
language locale |
geo |
string |
geolocation |
Programming Language | Example location | Download |
---|---|---|
Python | python/instagramcallback.py | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/python/instagramcallback.py > instagramcallback.py |
PHP | php/instagramcallback.php | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/php/instagramcallback.php > instagramcallback.php |
Node.js | nodejs/instagramcallback.js | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/nodejs/instagramcallback.js > instagramcallback.js |
API Link: https://scraper-api.smartproxy.com/v1/task/{Task_ID}/results?type=parsed
GET /task/{{Task ID}}/results?type=parsed
API Link: https://scraper-api.smartproxy.com/v1/task/{Task_ID}/results?type=raw
GET /task/{{Task ID}}/results?type=raw
API Link: https://scraper-api.smartproxy.com/v1/scrape
POST /scrape
Payload type: JSON
Required parameters:
url
(in this example, https://www.tiktok.com/@nba)
target
(in this example, tiktok_profile)
Parameter | Type | Description |
---|---|---|
url |
url |
TikTok profile URL |
target |
string |
target |
locale |
string |
language locale |
geo |
string |
geolocation |
Programming Language | Example location | Download |
---|---|---|
Python | python/tiktokprofile.py | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/python/tiktokprofile.py > tiktokprofile.py |
PHP | php/tiktokprofile.php | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/php/tiktokprofile.php > tiktokprofile.php |
Node.js | nodejs/tiktokprofile.js | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/nodejs/tiktokprofile.js > tiktokprofile.js |
API Link: https://scraper-api.smartproxy.com/v1/scrape
POST /scrape
Payload type: JSON
Required parameters:
url
(in this example, https://www.tiktok.com/@nba/video/7196793231042989354)
target
(in this example, tiktok_post)
Parameter | Type | Description |
---|---|---|
url |
url |
TikTok post URL |
target |
string |
target |
locale |
string |
language locale |
geo |
string |
geolocation |
Programming Language | Example location | Download |
---|---|---|
Python | python/tiktokpost.py | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/python/tiktokpost.py > tiktokpost.py |
PHP | php/tiktokpost.php | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/php/tiktokpost.php > tiktokpost.php |
Node.js | nodejs/tiktokpost.js | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/nodejs/tiktokpost.js > tiktokpost.js |
API Link: https://scraper-api.smartproxy.com/v1/scrape
POST /scrape
Payload type: JSON
Required parameters:
url
(in this example, https://www.tiktok.com/tag/satisfying)
target
(in this example, tiktok_hashtag)
Parameter | Type | Description |
---|---|---|
url |
url |
TikTok hashtag URL |
target |
string |
target |
locale |
string |
language locale |
geo |
string |
geolocation |
Programming Language | Example location | Download |
---|---|---|
Python | python/tiktokhashtag.py | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/python/tiktokhashtag.py > tiktokhashtag.py |
PHP | php/tiktokhashtag.php | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/php/tiktokhashtag.php > tiktokhashtag.php |
Node.js | nodejs/tiktokhashtag.js | curl https://raw.githubusercontent.com/Smartproxy/Social-Media-Scraping-API/blob/main/nodejs/tiktokhashtag.js > tiktokhashtag.js |
instagram_post
instagram_profile
instagram_reel
instagram_graphql_post
instagram_graphql_profile
instagram_graphql_hashtag
tiktok_profile
tiktok_post
tiktok_hashtag
Parameter | Type | Description |
---|---|---|
url |
url |
Social Media URL |
target |
string |
Desired target |
locale |
string |
Language Locale |
geo |
string |
Geolocation |
Response | Description | Solution |
---|---|---|
200 - Success | Server has replied and given requested response. | Celebrate! |
204 - No content | Job not completed yet. | Wait a few seconds before trying again. |
400 - Multiple error messages | Bad structure of the request. | Re-check your request to make sure it is in the correct format. |
401 - Invalid / not provided authorization header (client not found) | Incorrect login credentials or missing authorization. | Re-check your provided credentials for authorization. |
403 - Forbidden | Your account does not have access to this resource. | Make sure the target is supported by us |
404 - Not found | Your target was not found. | Re-check your targeted URL. |
429 - Too many requests | Exceeded rate limit for your subscription. | Make sure you still have at least one request left. Wait a couple minutes and try again. If you are encountering the error often – chat with us to see if your rate limit can be increased. |
500 - Internal error | Service unavailable, possibly due to some issues we are encountering. | Wait a couple minutes and send another request. Contact us for more information. |
524 - Timeout | Service unavailable, possibly due to some issues we are encountering. | Wait a couple minutes and send another request. Contact us for more information. |
Response | Description |
---|---|
12000 - Success | Server has replied and given the requested response. |
12002 - Error | Parsing has failed completely. |
12003 - Not supported | Targeted website parsing is not supported. |
12004 - Response not full | Some fields were not parsed and are missing. |
12005 - Response not fully parsed | Some fields might not have been parsed and are returned unparsed. |
12006 - Error | Unexpected error. Let us know the task ID and we will check what went wrong. |
12007 - Unknown | We could not determine whether the data was parsed correctly. |
12008 - Error | Failed to parse all the data. |
12009 - Error | Target not found. Make sure the parameters you passed are correct and supported. |
All code is released under MIT License