Account
List the trader's API keys
Returns all of the trader’s keys, newest first. Keys are stored hashed
and are never returned after creation — each row carries an
identification mask (api_key_masked, prefix…last4) plus prefix, label,
status, and created/last-used/revoked timestamps. A lost key cannot be
recovered: revoke it and create a new one.
GET
/
trade
/
partner
/
keys
List the trader's API keys
curl --request GET \
--url https://api.hyperprop.com/trade/partner/keysimport requests
url = "https://api.hyperprop.com/trade/partner/keys"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.hyperprop.com/trade/partner/keys', 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/trade/partner/keys",
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/trade/partner/keys"
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/trade/partner/keys")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hyperprop.com/trade/partner/keys")
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{
"code": null,
"data": [
{
"api_key_masked": "hpk_9f2cAb12…8xYz",
"created_at": "2026-08-01T09:00:00Z",
"id": "4d5e6f7a-3b4c-4d5e-7f8a-9b0c1d2e3f40",
"key_prefix": "hpk_9f2cAb12",
"label": "prod-backend",
"last_used_at": "2026-08-08T21:14:02Z",
"status": "active"
}
],
"error": null,
"success": true
}{
"code": "ERROR_CODE",
"data": null,
"error": "Error message describing what went wrong",
"success": false
}{
"code": "ERROR_CODE",
"data": null,
"error": "Error message describing what went wrong",
"success": false
}Response
The trader's API keys (masked)
⌘I
List the trader's API keys
curl --request GET \
--url https://api.hyperprop.com/trade/partner/keysimport requests
url = "https://api.hyperprop.com/trade/partner/keys"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.hyperprop.com/trade/partner/keys', 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/trade/partner/keys",
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/trade/partner/keys"
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/trade/partner/keys")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hyperprop.com/trade/partner/keys")
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{
"code": null,
"data": [
{
"api_key_masked": "hpk_9f2cAb12…8xYz",
"created_at": "2026-08-01T09:00:00Z",
"id": "4d5e6f7a-3b4c-4d5e-7f8a-9b0c1d2e3f40",
"key_prefix": "hpk_9f2cAb12",
"label": "prod-backend",
"last_used_at": "2026-08-08T21:14:02Z",
"status": "active"
}
],
"error": null,
"success": true
}{
"code": "ERROR_CODE",
"data": null,
"error": "Error message describing what went wrong",
"success": false
}{
"code": "ERROR_CODE",
"data": null,
"error": "Error message describing what went wrong",
"success": false
}