Organization
Get a specific trader
Get detailed information about a specific trader in your organization.
The traderId is the Hyperprop user ID (the userId field from the GET /organization/traders list).
What you get:
- User info (email, registration date, last sign in)
- Profile info (username, avatar, etc.)
- Organization metadata for this trader
- Account statistics (total, active, passed, failed)
- Full list of all their trading accounts with details
Example:
curl "https://api.example.com/platform/v1/organization/traders/{userId}" \
-H "X-API-Key: hp_live_your_key_here"
GET
/
v1
/
organization
/
traders
/
{traderId}
Get a specific trader
curl --request GET \
--url https://api.hyperprop.com/platform/v1/organization/traders/{traderId} \
--header 'Authorization: <api-key>'import requests
url = "https://api.hyperprop.com/platform/v1/organization/traders/{traderId}"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.hyperprop.com/platform/v1/organization/traders/{traderId}', 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/organization/traders/{traderId}",
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: <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"
"net/http"
"io"
)
func main() {
url := "https://api.hyperprop.com/platform/v1/organization/traders/{traderId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
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/organization/traders/{traderId}")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hyperprop.com/platform/v1/organization/traders/{traderId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"userId": "f994bc02-343c-4026-8a57-afc085eca8d5",
"email": "trader@example.com",
"emailVerified": true,
"lastSignIn": "2026-02-17T12:57:40.301Z",
"registeredAt": "2026-01-02T11:29:46.700Z",
"joinedAt": "2026-01-26T16:57:42.850Z",
"metadata": {
"customerTier": "gold",
"vip": true
},
"profile": {
"username": "johntrader",
"displayName": "John Trader",
"name": "John",
"avatarUrl": "https://api.dicebear.com/9.x/glass/svg?seed=john",
"isPublic": true
},
"accounts": {
"total": 5,
"active": 2,
"passed": 2,
"failed": 1
},
"accountsList": [
{
"id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"accountNumber": "ACC-MKVEUQWQ",
"type": "evaluation",
"status": "in_progress",
"initialBalance": 50000,
"currentBalance": 52000,
"highWaterMark": 52500,
"startedAt": "2026-02-01T09:00:00.000Z",
"completedAt": null,
"violationReason": null,
"metadata": {
"source": "website"
},
"purchase": {
"purchaseDate": "2026-01-28T10:00:00.000Z",
"pricePaid": 299,
"currency": "USD"
},
"createdAt": "2026-01-28T10:00:00.000Z",
"updatedAt": "2026-02-17T14:30:00.000Z"
}
]
}
}{
"success": false,
"statusCode": 401,
"error": "Unauthorized",
"message": "Authentication required",
"code": "UNAUTHORIZED"
}{
"statusCode": 403,
"error": "Forbidden",
"message": "This trader does not belong to your organization",
"code": "TRADER_NOT_IN_ORG"
}{
"statusCode": 404,
"error": "Not Found",
"message": "Trader not found",
"code": "TRADER_NOT_FOUND"
}{
"success": false,
"statusCode": 500,
"error": "Internal Server Error",
"message": "An unexpected error occurred",
"code": "INTERNAL_ERROR"
}Authorizations
BearerX-API-Key
JWT Bearer token for user session auth. Format: "Bearer {token}". Used by User and Organization endpoints.
Path Parameters
The Hyperprop user ID (from GET /organization/traders list)
Response
Trader retrieved successfully
Example:
true
Show child attributes
Show child attributes
Example:
{
"userId": "f994bc02-343c-4026-8a57-afc085eca8d5",
"email": "trader@example.com",
"emailVerified": true,
"lastSignIn": "2026-02-17T12:57:40.301Z",
"registeredAt": "2026-01-02T11:29:46.700Z",
"joinedAt": "2026-01-26T16:57:42.850Z",
"metadata": { "customerTier": "gold", "vip": true },
"profile": {
"username": "johntrader",
"displayName": "John Trader",
"name": "John",
"avatarUrl": "https://api.dicebear.com/9.x/glass/svg?seed=john",
"isPublic": true
},
"accounts": {
"total": 5,
"active": 2,
"passed": 2,
"failed": 1
},
"accountsList": [
{
"id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"accountNumber": "ACC-MKVEUQWQ",
"type": "evaluation",
"status": "in_progress",
"initialBalance": 50000,
"currentBalance": 52000,
"highWaterMark": 52500,
"startedAt": "2026-02-01T09:00:00.000Z",
"completedAt": null,
"violationReason": null,
"metadata": { "source": "website" },
"purchase": {
"purchaseDate": "2026-01-28T10:00:00.000Z",
"pricePaid": 299,
"currency": "USD"
},
"createdAt": "2026-01-28T10:00:00.000Z",
"updatedAt": "2026-02-17T14:30:00.000Z"
}
]
}
Related topics
Get a specific trading accountGet a specific trading ruleGet a specific purchaseGet a specific trading planGet order book for a specific symbol⌘I
Get a specific trader
curl --request GET \
--url https://api.hyperprop.com/platform/v1/organization/traders/{traderId} \
--header 'Authorization: <api-key>'import requests
url = "https://api.hyperprop.com/platform/v1/organization/traders/{traderId}"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.hyperprop.com/platform/v1/organization/traders/{traderId}', 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/organization/traders/{traderId}",
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: <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"
"net/http"
"io"
)
func main() {
url := "https://api.hyperprop.com/platform/v1/organization/traders/{traderId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
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/organization/traders/{traderId}")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hyperprop.com/platform/v1/organization/traders/{traderId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"userId": "f994bc02-343c-4026-8a57-afc085eca8d5",
"email": "trader@example.com",
"emailVerified": true,
"lastSignIn": "2026-02-17T12:57:40.301Z",
"registeredAt": "2026-01-02T11:29:46.700Z",
"joinedAt": "2026-01-26T16:57:42.850Z",
"metadata": {
"customerTier": "gold",
"vip": true
},
"profile": {
"username": "johntrader",
"displayName": "John Trader",
"name": "John",
"avatarUrl": "https://api.dicebear.com/9.x/glass/svg?seed=john",
"isPublic": true
},
"accounts": {
"total": 5,
"active": 2,
"passed": 2,
"failed": 1
},
"accountsList": [
{
"id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
"accountNumber": "ACC-MKVEUQWQ",
"type": "evaluation",
"status": "in_progress",
"initialBalance": 50000,
"currentBalance": 52000,
"highWaterMark": 52500,
"startedAt": "2026-02-01T09:00:00.000Z",
"completedAt": null,
"violationReason": null,
"metadata": {
"source": "website"
},
"purchase": {
"purchaseDate": "2026-01-28T10:00:00.000Z",
"pricePaid": 299,
"currency": "USD"
},
"createdAt": "2026-01-28T10:00:00.000Z",
"updatedAt": "2026-02-17T14:30:00.000Z"
}
]
}
}{
"success": false,
"statusCode": 401,
"error": "Unauthorized",
"message": "Authentication required",
"code": "UNAUTHORIZED"
}{
"statusCode": 403,
"error": "Forbidden",
"message": "This trader does not belong to your organization",
"code": "TRADER_NOT_IN_ORG"
}{
"statusCode": 404,
"error": "Not Found",
"message": "Trader not found",
"code": "TRADER_NOT_FOUND"
}{
"success": false,
"statusCode": 500,
"error": "Internal Server Error",
"message": "An unexpected error occurred",
"code": "INTERNAL_ERROR"
}