Account
List the trader's API keys
Returns all of the trader’s keys, newest first — including the full key
(api_key) so it can be copied again from the website, plus prefix,
label, status, and created/last-used/revoked timestamps.
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": [
{
"created_at": "2026-08-01T09:00:00Z",
"id": "4d5e6f7a-3b4c-4d5e-7f8a-9b0c1d2e3f40",
"key_prefix": "pk_live_9f2c",
"label": "prod-backend",
"last_used_at": "2026-08-08T21:14:02Z"
}
],
"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
Related topics
List API keysRevoke one of the trader's API keysGenerate a trader API key for third-party accessGet a specific traderList trader identity bindings (customer ⇄ Hyperprop login)⌘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": [
{
"created_at": "2026-08-01T09:00:00Z",
"id": "4d5e6f7a-3b4c-4d5e-7f8a-9b0c1d2e3f40",
"key_prefix": "pk_live_9f2c",
"label": "prod-backend",
"last_used_at": "2026-08-08T21:14:02Z"
}
],
"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
}