Twitter User Profile Scraper API

API Endpoint Specifications

  • Endpoint Path: /api/1/twitter-user-profile
  • Type of Data: JSON & 10/minute
  • Data Source: Twitter
  • Request Limit: 500 request/month
  • Script & Integration: Code to integrate with cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript
Twitter User Profile Scraper API Endpoint Basic Info

API Endpoint Path

required

Twitter User Profile Scraper

api/1/twitter-user-profile


Call Method

Required

POST

Type of Data Return

JSON

Output structured JSON data on Twitter user profile


Available API Arguments & Parameters

token

required

BUYFROMLO API token. Subscription API is available on /api/1/twitter-user-profile, and accessible to on-site APP on /app/1/twitter-user-profile as well

userproifleID

required

Enter a Twitter User profile ID or URL



Twitter User Profile Scraper

api/1/twitter-user-profile


Code Integration and Response

Python Code Sample


import requests

apiendpoint = "https://api.buyfromlo.com/api/1/twitter-user-profile"

## Required Arguments & Parameters ##
token = "your buyfromlo token"
userproifleID = "Enter a commodity name referring to the options"

## Call the api ##
response = requests.get(apiendpoint + "?token=" + token + "&userproifleID=" + userproifleID)
print(response.status_code)
print(response.json())
                        

JSON Response Sample


{
    "Post Date":"",
    "Post Content":"",
    "api_module": ""
}