ADDR=0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb
curl "https://api.arcus.xyz/v1/interest?address=${ADDR}&limit=100"import requests
r = requests.get(
"https://api.arcus.xyz/v1/interest",
params={
"address": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
"limit": 100,
# "from": 1785801600000000, # optional epoch-µs lower bound
# "to": 1785805200000000, # optional epoch-µs upper bound
},
)
print(r.json())
const url = new URL("https://api.arcus.xyz/v1/interest");
url.searchParams.set("address", "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb");
url.searchParams.set("limit", "100");
const res = await fetch(url);
console.log(await res.json());
const options = {method: 'GET'};
fetch('https://api.arcus.xyz/v1/interest', 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.arcus.xyz/v1/interest",
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.arcus.xyz/v1/interest"
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.arcus.xyz/v1/interest")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.arcus.xyz/v1/interest")
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{
"interestPayments": [
{
"payment": "1.234",
"time": 1712345678000000
}
]
}{
"error": "Invalid request body",
"code": "GEO_RESTRICTED",
"errorSource": "Order",
"errorType": "Tick",
"rejectionReason": "POST_ONLY_WOULD_CROSS"
}{
"error": "rate limited",
"reason": "account_empty",
"retryAfterMs": 850,
"clientId": "my-order-42"
}Get interest payments
Returns borrow-interest settlement history for the requested account address, newest-first. This is the lending analog of /v1/funding: where funding charges an open perpetual position, interest charges an open loan. Each entry is one settlement of accrued borrow interest from the account to the lending vault. Optional from/to (epoch microseconds, the unit of the time field in the response) bound the time window. When to is omitted it defaults to now; when from is omitted it defaults to 30 days before to. An explicit from is honored as-is, subject to data retention. No authentication header is required.
ADDR=0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb
curl "https://api.arcus.xyz/v1/interest?address=${ADDR}&limit=100"import requests
r = requests.get(
"https://api.arcus.xyz/v1/interest",
params={
"address": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
"limit": 100,
# "from": 1785801600000000, # optional epoch-µs lower bound
# "to": 1785805200000000, # optional epoch-µs upper bound
},
)
print(r.json())
const url = new URL("https://api.arcus.xyz/v1/interest");
url.searchParams.set("address", "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb");
url.searchParams.set("limit", "100");
const res = await fetch(url);
console.log(await res.json());
const options = {method: 'GET'};
fetch('https://api.arcus.xyz/v1/interest', 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.arcus.xyz/v1/interest",
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.arcus.xyz/v1/interest"
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.arcus.xyz/v1/interest")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.arcus.xyz/v1/interest")
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{
"interestPayments": [
{
"payment": "1.234",
"time": 1712345678000000
}
]
}{
"error": "Invalid request body",
"code": "GEO_RESTRICTED",
"errorSource": "Order",
"errorType": "Tick",
"rejectionReason": "POST_ONLY_WOULD_CROSS"
}{
"error": "rate limited",
"reason": "account_empty",
"retryAfterMs": 850,
"clientId": "my-order-42"
}/v1/funding: where funding charges an open perpetual position, interest charges an open loan. Each entry is one settlement of accrued borrow interest from the account to the lending vault. Optional from/to (epoch microseconds, the unit of the time field in the response) bound the time window. When to is omitted it defaults to now; when from is omitted it defaults to 30 days before to. An explicit from is honored as-is, subject to data retention. No authentication header is required.Query Parameters
Master Ethereum address for this API key (must match address from POST /createApiKey for the same key). Required on REST for account-scoped reads and for place/cancel. Invalid hex → 400; mismatch with key → 403.
20-byte EVM address as hex: optional 0x or 0X prefix and exactly 40 hexadecimal digits. API responses normalize to lowercase a–f after 0x.
^(0x|0X)?[0-9a-fA-F]{40}$Subaccount index (0–9) to scope the request to. Defaults to 0 (the primary account). Values above 9 → 400.
0 <= x <= 9Start of the time window, filtering on time (epoch microseconds, inclusive) — the same unit and field the response reports, so a time read from one page is a valid bound for the next with no conversion.
Second- and millisecond-scale values are rejected with a 400 (the server requires at least 1e14). A millisecond bound read as microseconds would land in 1970 and quietly return nothing.
x >= 1000000000000001785801600000000
End of the time window, filtering on time (epoch microseconds, inclusive) — the same unit and field the response reports, so a time read from one page is a valid bound for the next with no conversion.
Second- and millisecond-scale values are rejected with a 400 (the server requires at least 1e14). A millisecond bound read as microseconds would land in 1970 and quietly return nothing.
x >= 1000000000000001785805200000000
Maximum number of entries to return. Default and maximum are both 1000; requests above the maximum are silently clamped. Pass an explicit smaller value when you want fewer rows.
1 <= x <= 1000Response
Interest payment history.
Show child attributes
Show child attributes
Was this page helpful?