get_ranking
curl --request POST \
--url https://rumorz.azurewebsites.net/v0/graph/get_ranking \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"lookback": "1D",
"entity_type": "financial_asset",
"sort_by": "mentions",
"ascending": false,
"page": 1,
"limit": 10
}
'import requests
url = "https://rumorz.azurewebsites.net/v0/graph/get_ranking"
payload = {
"lookback": "1D",
"entity_type": "financial_asset",
"sort_by": "mentions",
"ascending": False,
"page": 1,
"limit": 10
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
lookback: '1D',
entity_type: 'financial_asset',
sort_by: 'mentions',
ascending: false,
page: 1,
limit: 10
})
};
fetch('https://rumorz.azurewebsites.net/v0/graph/get_ranking', 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://rumorz.azurewebsites.net/v0/graph/get_ranking",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'lookback' => '1D',
'entity_type' => 'financial_asset',
'sort_by' => 'mentions',
'ascending' => false,
'page' => 1,
'limit' => 10
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://rumorz.azurewebsites.net/v0/graph/get_ranking"
payload := strings.NewReader("{\n \"lookback\": \"1D\",\n \"entity_type\": \"financial_asset\",\n \"sort_by\": \"mentions\",\n \"ascending\": false,\n \"page\": 1,\n \"limit\": 10\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://rumorz.azurewebsites.net/v0/graph/get_ranking")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"lookback\": \"1D\",\n \"entity_type\": \"financial_asset\",\n \"sort_by\": \"mentions\",\n \"ascending\": false,\n \"page\": 1,\n \"limit\": 10\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://rumorz.azurewebsites.net/v0/graph/get_ranking")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"lookback\": \"1D\",\n \"entity_type\": \"financial_asset\",\n \"sort_by\": \"mentions\",\n \"ascending\": false,\n \"page\": 1,\n \"limit\": 10\n}"
response = http.request(request)
puts response.read_bodyGraph
get_ranking
Returns a ranking of entities in the Graph based on the given parameters.
get_ranking
curl --request POST \
--url https://rumorz.azurewebsites.net/v0/graph/get_ranking \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"lookback": "1D",
"entity_type": "financial_asset",
"sort_by": "mentions",
"ascending": false,
"page": 1,
"limit": 10
}
'import requests
url = "https://rumorz.azurewebsites.net/v0/graph/get_ranking"
payload = {
"lookback": "1D",
"entity_type": "financial_asset",
"sort_by": "mentions",
"ascending": False,
"page": 1,
"limit": 10
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
lookback: '1D',
entity_type: 'financial_asset',
sort_by: 'mentions',
ascending: false,
page: 1,
limit: 10
})
};
fetch('https://rumorz.azurewebsites.net/v0/graph/get_ranking', 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://rumorz.azurewebsites.net/v0/graph/get_ranking",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'lookback' => '1D',
'entity_type' => 'financial_asset',
'sort_by' => 'mentions',
'ascending' => false,
'page' => 1,
'limit' => 10
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://rumorz.azurewebsites.net/v0/graph/get_ranking"
payload := strings.NewReader("{\n \"lookback\": \"1D\",\n \"entity_type\": \"financial_asset\",\n \"sort_by\": \"mentions\",\n \"ascending\": false,\n \"page\": 1,\n \"limit\": 10\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://rumorz.azurewebsites.net/v0/graph/get_ranking")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"lookback\": \"1D\",\n \"entity_type\": \"financial_asset\",\n \"sort_by\": \"mentions\",\n \"ascending\": false,\n \"page\": 1,\n \"limit\": 10\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://rumorz.azurewebsites.net/v0/graph/get_ranking")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"lookback\": \"1D\",\n \"entity_type\": \"financial_asset\",\n \"sort_by\": \"mentions\",\n \"ascending\": false,\n \"page\": 1,\n \"limit\": 10\n}"
response = http.request(request)
puts response.read_bodyAuthorizations
Body
application/json
Available options:
1H, 6H, 12H, 1D, 7D, 30D, 90D Available options:
financial_asset, company, organization, person, place Available options:
mentions, sentiment, excitement, optimism, pessimism, fear, uncertainty, surprise Response
200
Success
⌘I