Skip to main content
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>'
{
  "data": [
    {
      "profileId": 294,
      "account": "0x1676716Ef7F19B5C5d690631CB57cf0bFD900A3d",
      "displayName": "user-bob"
    }
  ],
  "limit": 25,
  "page": 1,
  "hasMore": false
}

Documentation Index

Fetch the complete documentation index at: https://docs.limitless.exchange/llms.txt

Use this file to discover all available pages before exploring further.

Requires HMAC authentication with the account_creation scope. API key auth, Privy auth, and session auth are not accepted.
Lists partner-owned sub-accounts created under the authenticated partner profile. Use the optional 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

ParameterTypeRequiredDescription
accountstringNoExact EVM address filter. Matching is case-insensitive.
limitnumberNoPositive integer page size. Defaults to 25; values above 25 are capped to 25.
pagenumberNoPositive integer page number. Defaults to 1.

Response

{
  "data": [
    {
      "profileId": 294,
      "account": "0x1676716Ef7F19B5C5d690631CB57cf0bFD900A3d",
      "displayName": "user-bob"
    }
  ],
  "limit": 25,
  "page": 1,
  "hasMore": false
}

Errors

StatusDescription
400Invalid account, limit, or page query parameter.
401Missing or invalid authentication.
403Requires api-token HMAC auth with account_creation scope.

Authorizations

lmts-api-key
string
header
required

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

account
string

Optional EVM address filter. Matching is exact and case-insensitive.

limit
integer
default:25

Page size. Values above 25 are capped to 25.

Required range: x >= 1
page
integer
default:1

Page number.

Required range: x >= 1

Response

Partner sub-account list

data
object[]
required
limit
integer
required

Page size used by the server. Maximum is 25.

Example:

25

page
integer
required

Current page number

Example:

1

hasMore
boolean
required

Whether another page is available

Example:

false