Instagram Post Information Syphoon API Documentation
Endpoint
- URL:
https://api.syphoon.com - Method:
POST - Sample POST Body for API URL:
{ "url": instagram_post_url, "data_type": "post_info", "region": region, "key": syphoon_key, "method": "GET" }
Explanation:
- url : Instagram URL for the post.
- data_type : Should be
post_infofor this type of data. - region : Two-letter code for target region.
"us"by default. - key : Your Syphoon API key.
- method : Should be
GETfor this type of data.
Sample code snippets:
curl --location 'https://api.syphoon.com' \
--header 'Content-Type: application/json' \
--data '{
"url": "https://www.instagram.com/p/DW4J4bsFCZl",
"data_type": "post_info",
"key": "YOUR_SYPHOON_KEY",
"method": "GET"
}'