Skip to main content
GET
/
v1
/
social
/
stats
Social Stats
curl --request GET \
  --url https://api.invezo.com/v1/social/stats \
  --header 'x-invezo-api-key: <api-key>'
import requests

url = "https://api.invezo.com/v1/social/stats"

headers = {"x-invezo-api-key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'x-invezo-api-key': '<api-key>'}};

fetch('https://api.invezo.com/v1/social/stats', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.invezo.com/v1/social/stats",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_HTTPHEADER => [
    "x-invezo-api-key: <api-key>"
  ],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.invezo.com/v1/social/stats"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("x-invezo-api-key", "<api-key>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.invezo.com/v1/social/stats")
  .header("x-invezo-api-key", "<api-key>")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://api.invezo.com/v1/social/stats")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["x-invezo-api-key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
    "status": "OK",
    "request_id": "",
    "result_count": 5000,
    "data": [
        {
            "symbol": "BTC",
            "twitterFollowers": 5421666,
            "twitterFollowersTwentyFourHourChange": 2446,
            "twitterFollowersTwentyFourHourPercentChange": 0.00045135646827403205,
            "twitterVolume": 200197,
            "twitterVolumeTwentyFourHourChange": -27330,
            "twitterVolumeTwentyFourHourPercentChange": -0.12011761241522984,
            "redditSubscribers": 4432613,
            "redditSubscribersTwentyFourHourChange": 2925,
            "redditSubscribersTwentyFourHourPercentChange": 0.0006603173857842809,
            "redditVolume": 1021,
            "redditVolumeTwentyFourHourChange": -468,
            "redditVolumeTwentyFourHourPercentChange": -0.3143049026192075
        },
        {
            "symbol": "ETH",
            "twitterFollowers": 2710491,
            "twitterFollowersTwentyFourHourChange": 2544,
            "twitterFollowersTwentyFourHourPercentChange": 0.0009394570868632215,
            "twitterVolume": 124317,
            "twitterVolumeTwentyFourHourChange": -33922,
            "twitterVolumeTwentyFourHourPercentChange": -0.21437193106629845,
            "redditSubscribers": 1358343,
            "redditSubscribersTwentyFourHourChange": 1270,
            "redditSubscribersTwentyFourHourPercentChange": 0.000935837644695606,
            "redditVolume": 557,
            "redditVolumeTwentyFourHourChange": -551,
            "redditVolumeTwentyFourHourPercentChange": -0.4972924187725632
        },
        ...
    ]
}

Query Parameters

symbols
string
required
comma separated list of asset symbols (example: btc,eth)
{
    "status": "OK",
    "request_id": "",
    "result_count": 5000,
    "data": [
        {
            "symbol": "BTC",
            "twitterFollowers": 5421666,
            "twitterFollowersTwentyFourHourChange": 2446,
            "twitterFollowersTwentyFourHourPercentChange": 0.00045135646827403205,
            "twitterVolume": 200197,
            "twitterVolumeTwentyFourHourChange": -27330,
            "twitterVolumeTwentyFourHourPercentChange": -0.12011761241522984,
            "redditSubscribers": 4432613,
            "redditSubscribersTwentyFourHourChange": 2925,
            "redditSubscribersTwentyFourHourPercentChange": 0.0006603173857842809,
            "redditVolume": 1021,
            "redditVolumeTwentyFourHourChange": -468,
            "redditVolumeTwentyFourHourPercentChange": -0.3143049026192075
        },
        {
            "symbol": "ETH",
            "twitterFollowers": 2710491,
            "twitterFollowersTwentyFourHourChange": 2544,
            "twitterFollowersTwentyFourHourPercentChange": 0.0009394570868632215,
            "twitterVolume": 124317,
            "twitterVolumeTwentyFourHourChange": -33922,
            "twitterVolumeTwentyFourHourPercentChange": -0.21437193106629845,
            "redditSubscribers": 1358343,
            "redditSubscribersTwentyFourHourChange": 1270,
            "redditSubscribersTwentyFourHourPercentChange": 0.000935837644695606,
            "redditVolume": 557,
            "redditVolumeTwentyFourHourChange": -551,
            "redditVolumeTwentyFourHourPercentChange": -0.4972924187725632
        },
        ...
    ]
}