User
List your invoices
The signed-in trader’s invoices for Hyperprop add-ons, newest first (up to 50). status is paid, open (awaiting payment — pay it at hostedUrl), void or uncollectible. pdfUrl downloads the invoice. Amounts are in the smallest currency unit (cents); amountCents includes taxCents.
GET
/
v1
/
user
/
billing
/
invoices
List your invoices
curl --request GET \
--url https://api.hyperprop.com/platform/v1/user/billing/invoicesimport requests
url = "https://api.hyperprop.com/platform/v1/user/billing/invoices"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.hyperprop.com/platform/v1/user/billing/invoices', 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/billing/invoices",
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/platform/v1/user/billing/invoices"
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/platform/v1/user/billing/invoices")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hyperprop.com/platform/v1/user/billing/invoices")
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{
"success": true,
"data": {
"invoices": [
{
"id": "in_1QxYz2AbCdEf",
"number": "HP-0001-0003",
"createdAt": "2026-10-29T17:00:05.000Z",
"description": "CME Market Depth — November 2026",
"amountCents": 5445,
"taxCents": 945,
"currency": "usd",
"status": "paid",
"paidAt": "2026-10-29T17:00:07.000Z",
"pdfUrl": "https://billing.example.com/invoice/a1b2c3/pdf",
"hostedUrl": "https://billing.example.com/invoice/a1b2c3"
}
]
}
}{
"success": false,
"statusCode": 401,
"error": "Unauthorized",
"message": "Authentication required",
"code": "UNAUTHORIZED"
}{
"success": false,
"statusCode": 500,
"error": "Internal Server Error",
"message": "An unexpected error occurred",
"code": "INTERNAL_ERROR"
}⌘I
List your invoices
curl --request GET \
--url https://api.hyperprop.com/platform/v1/user/billing/invoicesimport requests
url = "https://api.hyperprop.com/platform/v1/user/billing/invoices"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.hyperprop.com/platform/v1/user/billing/invoices', 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/billing/invoices",
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/platform/v1/user/billing/invoices"
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/platform/v1/user/billing/invoices")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.hyperprop.com/platform/v1/user/billing/invoices")
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{
"success": true,
"data": {
"invoices": [
{
"id": "in_1QxYz2AbCdEf",
"number": "HP-0001-0003",
"createdAt": "2026-10-29T17:00:05.000Z",
"description": "CME Market Depth — November 2026",
"amountCents": 5445,
"taxCents": 945,
"currency": "usd",
"status": "paid",
"paidAt": "2026-10-29T17:00:07.000Z",
"pdfUrl": "https://billing.example.com/invoice/a1b2c3/pdf",
"hostedUrl": "https://billing.example.com/invoice/a1b2c3"
}
]
}
}{
"success": false,
"statusCode": 401,
"error": "Unauthorized",
"message": "Authentication required",
"code": "UNAUTHORIZED"
}{
"success": false,
"statusCode": 500,
"error": "Internal Server Error",
"message": "An unexpected error occurred",
"code": "INTERNAL_ERROR"
}