Social
Twitter Follower Change
Twitter users follow to accounts in order to add that users' posts to their home page. That accounts' updates will appear in a user's Home timeline. Measuring followers over time is a good way to measure general interest for an account over time.
GET
/v1/social/twitter/followers_change
x-invezo-api-key*
curl --request GET \
--url https://api.invezo.com/v1/social/twitter/followers_change \
--header 'x-invezo-api-key: <x-invezo-api-key>'
Query Parameters
symbolrequired
string
asset symbol (example: btc)
minrequired
int
start of the aggregate time window as a timestamp (example: 1168300800)
maxrequired
int
end of the aggregate time window as a timestamp (example: 1652486400)
intervalrequired
string
size of the time window (valid intervals: 5m, 1h, 1d, 1w, 1mo)
sort
string
sort the results by timestamp. asc will return results in ascending order (oldest to newest), desc will return results in descending order (newest to oldest). default value is asc
limit
int
limit the number of results returned, default is 5000 and max is 50000
{
"status": "OK",
"request_id": "",
"symbol": "BTC",
"result_count": 5000,
"data": [
{
"t": 1646092800,
"v": 7909
},
{
"t": 1646179200,
"v": 5446
},
...
]
}
curl --request GET \
--url https://api.invezo.com/v1/social/twitter/followers_change \
--header 'x-invezo-api-key: <x-invezo-api-key>'
{
"status": "OK",
"request_id": "",
"symbol": "BTC",
"result_count": 5000,
"data": [
{
"t": 1646092800,
"v": 7909
},
{
"t": 1646179200,
"v": 5446
},
...
]
}