User
Get public social feed by username
Public, visitor-facing Social Feed for a profile. Returns 404 if the profile is private or does not exist.
GET
/
v1
/
user
/
profile
/
{username}
/
feed
Get public social feed by username
curl --request GET \
--url https://api.hyperprop.com/platform/v1/user/profile/{username}/feedimport requests
url = "https://api.hyperprop.com/platform/v1/user/profile/{username}/feed"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.hyperprop.com/platform/v1/user/profile/{username}/feed', 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/profile/{username}/feed",
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/profile/{username}/feed"
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/profile/{username}/feed")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hyperprop.com/platform/v1/user/profile/{username}/feed")
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": "c7de13a2-58b1-4f6e-8a3d-2e9c4b7f1a05",
"sourceType": "pnl_card",
"sourceId": "9b2f6c1e-4d0a-4c8f-9d2e-7a1b3c5d7e9f",
"caption": "Clean breakout, took the target.",
"publishedAt": "2026-08-07T14:35:00.000Z",
"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"
},
"trade": {
"symbol": "MNQ",
"contract": "MNQU6",
"side": "long",
"quantity": 2,
"entryPrice": 29528.5,
"exitPrice": 29562.25,
"openedAt": "2026-08-07T13:58:02.000Z",
"closedAt": "2026-08-07T14:31:40.000Z",
"pnlNet": 133.5
}
}
],
"total": 12,
"owner": {
"username": "deuces",
"displayName": "Deuces",
"avatarUrl": "https://cdn.hyperprop.com/avatars/deuces.png"
},
"limit": 20,
"offset": 0,
"hasMore": false
}
}{
"success": false,
"statusCode": 404,
"error": "Not Found",
"message": "User not found",
"code": "USER_NOT_FOUND"
}{
"success": false,
"statusCode": 500,
"error": "Internal Server Error",
"message": "An unexpected error occurred",
"code": "INTERNAL_ERROR"
}Related topics
Get own social feedPublish to social feedGet user profile by usernameRemove from social feedGet activity stream⌘I
Get public social feed by username
curl --request GET \
--url https://api.hyperprop.com/platform/v1/user/profile/{username}/feedimport requests
url = "https://api.hyperprop.com/platform/v1/user/profile/{username}/feed"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.hyperprop.com/platform/v1/user/profile/{username}/feed', 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/profile/{username}/feed",
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/profile/{username}/feed"
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/profile/{username}/feed")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hyperprop.com/platform/v1/user/profile/{username}/feed")
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": "c7de13a2-58b1-4f6e-8a3d-2e9c4b7f1a05",
"sourceType": "pnl_card",
"sourceId": "9b2f6c1e-4d0a-4c8f-9d2e-7a1b3c5d7e9f",
"caption": "Clean breakout, took the target.",
"publishedAt": "2026-08-07T14:35:00.000Z",
"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"
},
"trade": {
"symbol": "MNQ",
"contract": "MNQU6",
"side": "long",
"quantity": 2,
"entryPrice": 29528.5,
"exitPrice": 29562.25,
"openedAt": "2026-08-07T13:58:02.000Z",
"closedAt": "2026-08-07T14:31:40.000Z",
"pnlNet": 133.5
}
}
],
"total": 12,
"owner": {
"username": "deuces",
"displayName": "Deuces",
"avatarUrl": "https://cdn.hyperprop.com/avatars/deuces.png"
},
"limit": 20,
"offset": 0,
"hasMore": false
}
}{
"success": false,
"statusCode": 404,
"error": "Not Found",
"message": "User not found",
"code": "USER_NOT_FOUND"
}{
"success": false,
"statusCode": 500,
"error": "Internal Server Error",
"message": "An unexpected error occurred",
"code": "INTERNAL_ERROR"
}