Instagram Profile Details Syphoon API Documentation
Endpoint
- URL:
https://api.syphoon.com - Method:
POST - Sample POST Body for API URL:
{ "url": instagram_profile_url, "data_type": "profile_details", "key": syphoon_key, "method": "GET" }
Explanation:
- url : Instagram URL for the profile.
- data_type : Should be
profile_detailsfor this type of data. - 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/microsoft",
"data_type": "profile_details",
"key": "YOUR_SYPHOON_KEY",
"method": "GET"
}'