Organization
Get a specific trading plan
Retrieve complete details for a single trading plan by its ID.
When to use this:
- Display plan details on a checkout page
- Verify plan configuration before creating an account
- Show plan info in your admin dashboard
What you get:
- Full plan details (name, price, duration, account size)
- Complete trading rules attached to this plan
- Custom metadata you’ve stored
- Active/inactive status
Example:
GET /organization/trading-plans/550e8400-e29b-41d4-a716-446655440000
GET
/
v1
/
organization
/
trading-plans
/
{planId}
Get a specific trading plan
curl --request GET \
--url https://api.hyperprop.com/platform/v1/organization/trading-plans/{planId} \
--header 'Authorization: <api-key>'import requests
url = "https://api.hyperprop.com/platform/v1/organization/trading-plans/{planId}"
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/trading-plans/{planId}', 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/trading-plans/{planId}",
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/trading-plans/{planId}"
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/trading-plans/{planId}")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hyperprop.com/platform/v1/organization/trading-plans/{planId}")
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": {
"id": "09c93da5-f057-4cc5-82da-ff9220292c94",
"name": "50K Challenge",
"description": "Our most popular evaluation. Standard risk rules with a solid balance of target and protection.",
"price": 299,
"currency": "USD",
"durationDays": 30,
"accountSize": 50000,
"isActive": true,
"metadata": {
"targetAudience": "beginner",
"internalCode": "PLAN-50K-V2"
},
"tradingRule": {
"id": "6bec94a1-425b-47be-bb41-a80e3140e2e7",
"name": "Standard Rules",
"description": "Balanced evaluation rules with 8% profit target and 5% max trailing loss.",
"profitTarget": 4000,
"dailyProfit": 0,
"maxProfit": 0,
"dailyLoss": 1000,
"maxLoss": 2500,
"dailyDrawdown": 2,
"maxDrawdown": 5,
"drawdownType": "static",
"consistency": 0,
"maxContracts": 10,
"microConversionRatio": 10
},
"createdAt": "2025-12-30T12:28:04.204Z",
"updatedAt": "2025-12-30T12:28:04.204Z"
}
}{
"statusCode": 401,
"error": "Unauthorized",
"message": "Invalid or expired session"
}{
"statusCode": 403,
"error": "Forbidden",
"message": "This plan does not belong to your organization",
"code": "PLAN_NOT_IN_ORG"
}{
"statusCode": 404,
"error": "Not Found",
"message": "Trading plan not found",
"code": "PLAN_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 plan ID to retrieve
Response
Success - Returns the trading plan
Example:
true
Show child attributes
Show child attributes
Example:
{
"id": "09c93da5-f057-4cc5-82da-ff9220292c94",
"name": "50K Challenge",
"description": "Our most popular evaluation. Standard risk rules with a solid balance of target and protection.",
"price": 299,
"currency": "USD",
"durationDays": 30,
"accountSize": 50000,
"isActive": true,
"metadata": {
"targetAudience": "beginner",
"internalCode": "PLAN-50K-V2"
},
"tradingRule": {
"id": "6bec94a1-425b-47be-bb41-a80e3140e2e7",
"name": "Standard Rules",
"description": "Balanced evaluation rules with 8% profit target and 5% max trailing loss.",
"profitTarget": 4000,
"dailyProfit": 0,
"maxProfit": 0,
"dailyLoss": 1000,
"maxLoss": 2500,
"dailyDrawdown": 2,
"maxDrawdown": 5,
"drawdownType": "static",
"consistency": 0,
"maxContracts": 10,
"microConversionRatio": 10
},
"createdAt": "2025-12-30T12:28:04.204Z",
"updatedAt": "2025-12-30T12:28:04.204Z"
}
Related topics
Get a specific trading accountGet a specific trading ruleGet trading plans for your organizationGet a specific purchaseGet purchases for your organization⌘I
Get a specific trading plan
curl --request GET \
--url https://api.hyperprop.com/platform/v1/organization/trading-plans/{planId} \
--header 'Authorization: <api-key>'import requests
url = "https://api.hyperprop.com/platform/v1/organization/trading-plans/{planId}"
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/trading-plans/{planId}', 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/trading-plans/{planId}",
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/trading-plans/{planId}"
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/trading-plans/{planId}")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hyperprop.com/platform/v1/organization/trading-plans/{planId}")
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": {
"id": "09c93da5-f057-4cc5-82da-ff9220292c94",
"name": "50K Challenge",
"description": "Our most popular evaluation. Standard risk rules with a solid balance of target and protection.",
"price": 299,
"currency": "USD",
"durationDays": 30,
"accountSize": 50000,
"isActive": true,
"metadata": {
"targetAudience": "beginner",
"internalCode": "PLAN-50K-V2"
},
"tradingRule": {
"id": "6bec94a1-425b-47be-bb41-a80e3140e2e7",
"name": "Standard Rules",
"description": "Balanced evaluation rules with 8% profit target and 5% max trailing loss.",
"profitTarget": 4000,
"dailyProfit": 0,
"maxProfit": 0,
"dailyLoss": 1000,
"maxLoss": 2500,
"dailyDrawdown": 2,
"maxDrawdown": 5,
"drawdownType": "static",
"consistency": 0,
"maxContracts": 10,
"microConversionRatio": 10
},
"createdAt": "2025-12-30T12:28:04.204Z",
"updatedAt": "2025-12-30T12:28:04.204Z"
}
}{
"statusCode": 401,
"error": "Unauthorized",
"message": "Invalid or expired session"
}{
"statusCode": 403,
"error": "Forbidden",
"message": "This plan does not belong to your organization",
"code": "PLAN_NOT_IN_ORG"
}{
"statusCode": 404,
"error": "Not Found",
"message": "Trading plan not found",
"code": "PLAN_NOT_FOUND"
}{
"success": false,
"statusCode": 500,
"error": "Internal Server Error",
"message": "An unexpected error occurred",
"code": "INTERNAL_ERROR"
}