curl --request GET \
--url https://api.aries.com/v1/options/activity \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.aries.com/v1/options/activity"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.aries.com/v1/options/activity', 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.aries.com/v1/options/activity",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.aries.com/v1/options/activity"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.aries.com/v1/options/activity")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aries.com/v1/options/activity")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"activities": [
{
"id": "67745ec4c88d4e00015ce121",
"date": "2024-12-31",
"time": "16:14:43",
"ticker": "SPY",
"exchange": "ARCA",
"description": "SPDR S&P 500 Option Alert: Jan 2 $591 Calls Sweep (5) near the Bid: 488 vs 2017 OI",
"descriptionExtended": "SPDR S&P 500 Option Alert: Jan 2 $591 Calls Sweep (5) near the Bid: 488 @ $0.54 vs 2017 OI; Ref=$586.4",
"updated": 1735679684,
"sentiment": "BEARISH",
"aggressorInd": "0.0",
"optionSymbol": "SPY250102C00591000",
"underlyingType": "ETF",
"underlyingPrice": "586.4",
"costBasis": "26352.000000000004",
"putCall": "CALL",
"strikePrice": "591.00",
"price": "0.54",
"size": "488",
"dateExpiration": "2025-01-02",
"optionActivityType": "SWEEP",
"tradeCount": "5",
"openInterest": "2017",
"volume": "37933",
"bid": "0.54",
"ask": "0.55",
"midpoint": "0.545",
"executionEstimate": "AT_BID"
}
]
}Options Activity
Retrieve unusual options activity including high volume trades, large block transactions, and notable put/call ratios. Identify smart money positioning and potential catalysts.
Use Case: Alert users when unusual call option volume exceeds 10x the average daily volume.
curl --request GET \
--url https://api.aries.com/v1/options/activity \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.aries.com/v1/options/activity"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.aries.com/v1/options/activity', 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.aries.com/v1/options/activity",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.aries.com/v1/options/activity"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.aries.com/v1/options/activity")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aries.com/v1/options/activity")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"activities": [
{
"id": "67745ec4c88d4e00015ce121",
"date": "2024-12-31",
"time": "16:14:43",
"ticker": "SPY",
"exchange": "ARCA",
"description": "SPDR S&P 500 Option Alert: Jan 2 $591 Calls Sweep (5) near the Bid: 488 vs 2017 OI",
"descriptionExtended": "SPDR S&P 500 Option Alert: Jan 2 $591 Calls Sweep (5) near the Bid: 488 @ $0.54 vs 2017 OI; Ref=$586.4",
"updated": 1735679684,
"sentiment": "BEARISH",
"aggressorInd": "0.0",
"optionSymbol": "SPY250102C00591000",
"underlyingType": "ETF",
"underlyingPrice": "586.4",
"costBasis": "26352.000000000004",
"putCall": "CALL",
"strikePrice": "591.00",
"price": "0.54",
"size": "488",
"dateExpiration": "2025-01-02",
"optionActivityType": "SWEEP",
"tradeCount": "5",
"openInterest": "2017",
"volume": "37933",
"bid": "0.54",
"ask": "0.55",
"midpoint": "0.545",
"executionEstimate": "AT_BID"
}
]
}Authorizations
OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.
Query Parameters
Start date for filtering options activity in YYYY-MM-DD format
End date for filtering options activity in YYYY-MM-DD format
Comma-separated list of ticker symbols to filter results
Page number for pagination (zero-based)
x >= 0Number of results per page. Use this to control pagination size in list views. (default: 100, max: 1000)
1 <= x <= 1000Response
Successful response
Show child attributes
Show child attributes
Was this page helpful?