List partner sub-accounts
curl --request GET \
--url https://api.limitless.exchange/profiles/partner-accounts \
--header 'lmts-api-key: <api-key>'import requests
url = "https://api.limitless.exchange/profiles/partner-accounts"
headers = {"lmts-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'lmts-api-key': '<api-key>'}};
fetch('https://api.limitless.exchange/profiles/partner-accounts', 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.limitless.exchange/profiles/partner-accounts",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"lmts-api-key: <api-key>"
],
]);
$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.limitless.exchange/profiles/partner-accounts"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("lmts-api-key", "<api-key>")
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.limitless.exchange/profiles/partner-accounts")
.header("lmts-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.limitless.exchange/profiles/partner-accounts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["lmts-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"profileId": 294,
"account": "0x1676716Ef7F19B5C5d690631CB57cf0bFD900A3d",
"displayName": "user-bob"
}
],
"limit": 25,
"page": 1,
"hasMore": false
}Partner Accounts
List Partner Sub-Accounts
Lists partner-owned sub-accounts created under the authenticated partner profile, or recovers a specific sub-account by account address. Requires HMAC authentication with the account_creation scope. Do not send x-on-behalf-of; results are always scoped to the authenticated partner.
GET
/
profiles
/
partner-accounts
List partner sub-accounts
curl --request GET \
--url https://api.limitless.exchange/profiles/partner-accounts \
--header 'lmts-api-key: <api-key>'import requests
url = "https://api.limitless.exchange/profiles/partner-accounts"
headers = {"lmts-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'lmts-api-key': '<api-key>'}};
fetch('https://api.limitless.exchange/profiles/partner-accounts', 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.limitless.exchange/profiles/partner-accounts",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"lmts-api-key: <api-key>"
],
]);
$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.limitless.exchange/profiles/partner-accounts"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("lmts-api-key", "<api-key>")
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.limitless.exchange/profiles/partner-accounts")
.header("lmts-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.limitless.exchange/profiles/partner-accounts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["lmts-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"profileId": 294,
"account": "0x1676716Ef7F19B5C5d690631CB57cf0bFD900A3d",
"displayName": "user-bob"
}
],
"limit": 25,
"page": 1,
"hasMore": false
}Requires HMAC authentication with the
account_creation scope. API key
auth, Privy auth, and session auth are not accepted.account query parameter to recover the profileId for a
known sub-account address.
Do not send
x-on-behalf-of to this endpoint. It always scopes results to the
authenticated partner.Query parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
account | string | No | Exact EVM address filter. Matching is case-insensitive. |
limit | number | No | Positive integer page size. Defaults to 25; values above 25 are capped to 25. |
page | number | No | Positive integer page number. Defaults to 1. |
Response
{
"data": [
{
"profileId": 294,
"account": "0x1676716Ef7F19B5C5d690631CB57cf0bFD900A3d",
"displayName": "user-bob"
}
],
"limit": 25,
"page": 1,
"hasMore": false
}
Errors
| Status | Description |
|---|---|
400 | Invalid account, limit, or page query parameter. |
401 | Missing or invalid authentication. |
403 | Requires api-token HMAC auth with account_creation scope. |
Authorizations
Scoped API token with HMAC-SHA256 signing. Requires three headers: lmts-api-key (token ID), lmts-timestamp (ISO-8601), lmts-signature (Base64-encoded HMAC). See Authentication docs for details.
Query Parameters
Optional EVM address filter. Matching is exact and case-insensitive.
Page size. Values above 25 are capped to 25.
Required range:
x >= 1Page number.
Required range:
x >= 1