Instagram Trending Post Scraper API

API Endpoint Specifications

  • Endpoint Path: /api/1/instagramPost
  • Type of Data: JSON & 10/minute
  • Data Source: Instagram.com
  • Request Limit: 500 request/month
  • Script & Integration: Code to integrate with cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript
Instagram Trending Post Scraper API Endpoint Basic Info

API Endpoint Path

required

Instagram Trending Post Scraper API

api/1/instagramPost


Call Method

Required

POST

Type of Data Return

JSON

Output structured JSON data on Instagram trending post


Available API Arguments & Parameters

token

required

BUYFROMLO API token. Paid subscription API is available: /api/1/instagramPost, and accessible to on-site APP on /app/1/instagrampost as well

hashtag

required

Input a keyword in English

name

required

Enter an Instagram account user namer

pw

required

Input the account password



Instagram Trending Post Scraper API

api/1/instagramPost


Code Integration and Response

Python Code Sample


import requests

apiendpoint = "https://api.buyfromlo.com/api/3/blogchain"

## Required Arguments & Parameters ##

originalContent = "raw content materials or context for reference"
hashtag = "target hashtag keyword"
name = "instagram account user name"
pw = "instagram account password"

## Call the api ##
response = requests.post(apiendpoint + "?token=" + token, json={"hashtag":hashtag, "name": name, "pw": pw})
print(response.status_code)
print(response.json())
                        

JSON Response Sample


{
    "Instagram Trending Post": " " (string),
}