Instagram Reels Search Syphoon API Documentation

Endpoint

  • URL: https://api.syphoon.com
  • Method: POST
  • Sample POST Body for API URL:
    {
    "url": "https://www.instagram.com",
    "data_type": "search_reels",
    "keyword": keyword,
    "page_num": page_num,
    "key": syphoon_key,
    "method": "GET"
    }

Explanation:

  • url : should be set to https://www.instagram.com for this type of data.
  • data_type : Should be search_reels for this type of data.
  • keyword : The keyword that you want to search for reels.
  • page_num : The page number of search results.
  • 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",
    "data_type": "search_reels",
    "keyword": "keyboards",
    "page_num": 1,
    "key": "YOUR_SYPHOON_KEY",
    "method": "GET"
}'