User
Get activity stream
Private, owner-only stream of generated PnL cards and milestones, newest first. Each item carries a published flag indicating whether it is on the public Social Feed.
GET
/
v1
/
user
/
activity
Get activity stream
curl --request GET \
--url https://api.hyperprop.com/platform/v1/user/activityimport requests
url = "https://api.hyperprop.com/platform/v1/user/activity"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.hyperprop.com/platform/v1/user/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.hyperprop.com/platform/v1/user/activity",
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.hyperprop.com/platform/v1/user/activity"
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.hyperprop.com/platform/v1/user/activity")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hyperprop.com/platform/v1/user/activity")
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{
"success": true,
"data": {
"items": [
{
"id": "pnl_card:9b2f6c1e-4d0a-4c8f-9d2e-7a1b3c5d7e9f",
"sourceType": "pnl_card",
"sourceId": "9b2f6c1e-4d0a-4c8f-9d2e-7a1b3c5d7e9f",
"occurredAt": "2026-08-07T14:31:40.000Z",
"published": true,
"card": {
"id": "9b2f6c1e-4d0a-4c8f-9d2e-7a1b3c5d7e9f",
"snapshot": {},
"description": "MNQ scalp into the close",
"createdAt": "2026-08-07T14:32:11.000Z"
},
"milestone": {
"title": "First payout",
"emoji": "🏆",
"occurredAt": "2026-08-01T09:00:00.000Z"
}
}
],
"total": 37,
"limit": 50,
"offset": 0,
"hasMore": false
}
}{
"success": false,
"statusCode": 401,
"error": "Unauthorized",
"message": "Authentication required",
"code": "UNAUTHORIZED"
}{
"success": false,
"statusCode": 500,
"error": "Internal Server Error",
"message": "An unexpected error occurred",
"code": "INTERNAL_ERROR"
}Related topics
Get daily billing activityGet daily lockout activityGet daily payout activityGet daily webhook delivery activityGet daily account creation activity⌘I
Get activity stream
curl --request GET \
--url https://api.hyperprop.com/platform/v1/user/activityimport requests
url = "https://api.hyperprop.com/platform/v1/user/activity"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.hyperprop.com/platform/v1/user/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.hyperprop.com/platform/v1/user/activity",
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.hyperprop.com/platform/v1/user/activity"
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.hyperprop.com/platform/v1/user/activity")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hyperprop.com/platform/v1/user/activity")
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{
"success": true,
"data": {
"items": [
{
"id": "pnl_card:9b2f6c1e-4d0a-4c8f-9d2e-7a1b3c5d7e9f",
"sourceType": "pnl_card",
"sourceId": "9b2f6c1e-4d0a-4c8f-9d2e-7a1b3c5d7e9f",
"occurredAt": "2026-08-07T14:31:40.000Z",
"published": true,
"card": {
"id": "9b2f6c1e-4d0a-4c8f-9d2e-7a1b3c5d7e9f",
"snapshot": {},
"description": "MNQ scalp into the close",
"createdAt": "2026-08-07T14:32:11.000Z"
},
"milestone": {
"title": "First payout",
"emoji": "🏆",
"occurredAt": "2026-08-01T09:00:00.000Z"
}
}
],
"total": 37,
"limit": 50,
"offset": 0,
"hasMore": false
}
}{
"success": false,
"statusCode": 401,
"error": "Unauthorized",
"message": "Authentication required",
"code": "UNAUTHORIZED"
}{
"success": false,
"statusCode": 500,
"error": "Internal Server Error",
"message": "An unexpected error occurred",
"code": "INTERNAL_ERROR"
}