Instagram Reels List Syphoon API Documentation

Endpoint

  • URL: https://api.syphoon.com
  • Method: POST
  • Sample POST Body for API URL:
    {
    "url": instagram_profile_url,
    "data_type": "list_reels",
    "cursor_id": cursor_id,
    "key": syphoon_key,
    "method": "GET"
    }

Explanation:

  • url : Instagram URL of the profile.
  • data_type : Should be list_reels for this type of data.
  • cursor_id : Cursor to get more reels. Should be null for the first request.
  • key : Your Syphoon API key.
  • method : Should be GET for 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": "list_reels",
    "key": "YOUR_SYPHOON_KEY",
    "method": "GET"
}'