User
Turn Market Depth auto-renew off or on
renew: false stops future charges; the add-on stays on through the months already paid. renew: true turns automatic renewal back on — if this month’s charge day has already passed, next month is charged right away so the add-on continues when the month starts. Returns the updated status. 404 when the trader has no paid Market Depth month (buy it via checkout instead).
POST
/
v1
/
user
/
addons
/
market-depth
/
renewal
Turn Market Depth auto-renew off or on
curl --request POST \
--url https://api.hyperprop.com/platform/v1/user/addons/market-depth/renewal \
--header 'Content-Type: application/json' \
--data '{
"renew": false
}'import requests
url = "https://api.hyperprop.com/platform/v1/user/addons/market-depth/renewal"
payload = { "renew": False }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({renew: false})
};
fetch('https://api.hyperprop.com/platform/v1/user/addons/market-depth/renewal', 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/addons/market-depth/renewal",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'renew' => false
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.hyperprop.com/platform/v1/user/addons/market-depth/renewal"
payload := strings.NewReader("{\n \"renew\": false\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.hyperprop.com/platform/v1/user/addons/market-depth/renewal")
.header("Content-Type", "application/json")
.body("{\n \"renew\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hyperprop.com/platform/v1/user/addons/market-depth/renewal")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"renew\": false\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"active": true,
"source": "monthly",
"autoRenew": true,
"paidThrough": "2026-10-01",
"nextChargeDate": "2026-10-29",
"paymentFailed": false,
"canManageBilling": true,
"priceCents": 4800,
"currency": "usd"
}
}{
"success": false,
"statusCode": 401,
"error": "Unauthorized",
"message": "Authentication required",
"code": "UNAUTHORIZED"
}{
"success": false,
"statusCode": 404,
"error": "Not Found",
"message": "Resource not found",
"code": "NOT_FOUND"
}{
"success": false,
"statusCode": 500,
"error": "Internal Server Error",
"message": "An unexpected error occurred",
"code": "INTERNAL_ERROR"
}⌘I
Turn Market Depth auto-renew off or on
curl --request POST \
--url https://api.hyperprop.com/platform/v1/user/addons/market-depth/renewal \
--header 'Content-Type: application/json' \
--data '{
"renew": false
}'import requests
url = "https://api.hyperprop.com/platform/v1/user/addons/market-depth/renewal"
payload = { "renew": False }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({renew: false})
};
fetch('https://api.hyperprop.com/platform/v1/user/addons/market-depth/renewal', 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/addons/market-depth/renewal",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'renew' => false
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.hyperprop.com/platform/v1/user/addons/market-depth/renewal"
payload := strings.NewReader("{\n \"renew\": false\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.hyperprop.com/platform/v1/user/addons/market-depth/renewal")
.header("Content-Type", "application/json")
.body("{\n \"renew\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hyperprop.com/platform/v1/user/addons/market-depth/renewal")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"renew\": false\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"active": true,
"source": "monthly",
"autoRenew": true,
"paidThrough": "2026-10-01",
"nextChargeDate": "2026-10-29",
"paymentFailed": false,
"canManageBilling": true,
"priceCents": 4800,
"currency": "usd"
}
}{
"success": false,
"statusCode": 401,
"error": "Unauthorized",
"message": "Authentication required",
"code": "UNAUTHORIZED"
}{
"success": false,
"statusCode": 404,
"error": "Not Found",
"message": "Resource not found",
"code": "NOT_FOUND"
}{
"success": false,
"statusCode": 500,
"error": "Internal Server Error",
"message": "An unexpected error occurred",
"code": "INTERNAL_ERROR"
}