Instagram Comments Syphoon API Documentation
Endpoint
- URL:
https://api.syphoon.com - Method:
POST - Sample POST Body for API URL:
{ "url": instagram_post_url, "data_type": "comments", "cursor_id": cursor_id, "key": syphoon_key, "method": "GET" }
Explanation:
- url : Instagram URL of the post for which you want to extract comments.
- data_type : Should be
commentsfor this type of data. - cursor_id : Cursor to get the next page of results. Should be
nullfor the first request. - 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": "comments",
"key": "YOUR_SYPHOON_KEY",
"method": "GET"
}'