curl --request GET \
--url 'https://api.benzinga.com/api/v1/trending-tickers/list?token='import requests
url = "https://api.benzinga.com/api/v1/trending-tickers/list?token="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.benzinga.com/api/v1/trending-tickers/list?token=', 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.benzinga.com/api/v1/trending-tickers/list?token=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.benzinga.com/api/v1/trending-tickers/list?token="
req, _ := http.NewRequest("GET", url, nil)
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.benzinga.com/api/v1/trending-tickers/list?token=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.benzinga.com/api/v1/trending-tickers/list?token=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"ok": true,
"data": [
{
"security": {
"ticker": "RVLV",
"name": "Revolve Gr",
"exchange": "NYSE"
},
"count": 2344,
"pct_chg": 23340
}
]
}
Ticker Trend List Data
Retrieve a list of trending tickers based on various metrics. Returns securities ordered by trending score across different time intervals.
curl --request GET \
--url 'https://api.benzinga.com/api/v1/trending-tickers/list?token='import requests
url = "https://api.benzinga.com/api/v1/trending-tickers/list?token="
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.benzinga.com/api/v1/trending-tickers/list?token=', 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.benzinga.com/api/v1/trending-tickers/list?token=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.benzinga.com/api/v1/trending-tickers/list?token="
req, _ := http.NewRequest("GET", url, nil)
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.benzinga.com/api/v1/trending-tickers/list?token=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.benzinga.com/api/v1/trending-tickers/list?token=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"ok": true,
"data": [
{
"security": {
"ticker": "RVLV",
"name": "Revolve Gr",
"exchange": "NYSE"
},
"count": 2344,
"pct_chg": 23340
}
]
}
{
"ok": true,
"data": [
{
"security": {
"ticker": "RVLV",
"name": "Revolve Gr",
"exchange": "NYSE"
},
"count": 2344,
"pct_chg": 23340
}
]
}
{
"ok": false,
"errors": [
{
"id": "hbiGJjhsSpnfhM8aBePyTB",
"code": "400",
"value": "Bad Request"
}
]
}
{
"ok": false,
"errors": [
{
"id": "hbiGJjhsSpnfhM8aBePyTB",
"code": "500",
"value": "Something went wrong"
}
]
}
Authorizations
Query Parameters
Deprecated. Use timeframe instead. Time interval for aggregating trend data.
Optional comma-separated list of ticker symbols to filter results. If omitted, returns all trending tickers.
Data source filter for trend calculation. Supported values: all (all sources combined), clickstream (user interaction data), logo (logo request data). Required.
Time interval for trend aggregation. Supported values: 10m (10 minutes), 1h (1 hour), 1d (1 day). Default: 1d
Start time filter in 24-hour format (e.g., 09:15, 14:30). Use with date_from for precise time ranges.
End time filter in 24-hour format (e.g., 16:00, 22:30). Use with date_to for precise time ranges.
Start date filter in ISO 8601 format (e.g., 2024-12-30, 2024-01-15). Use with time_from for precise ranges.
End date filter in ISO 8601 format (e.g., 2024-12-30, 2024-01-31). Use with time_to for precise ranges.
Page number for pagination. Zero-indexed (0 = first page, 1 = second page, etc.). Default: 0
Number of results per page. Default: 1000. Maximum: 1000
Was this page helpful?