Skip to main content
GET
/
me
Get authenticated partner profile
curl --request GET \
  --url https://api-partner.houdiniswap.com/v2/me \
  --header 'Authorization: <api-key>'
{
  "id": "<string>",
  "email": "<string>",
  "created": "2023-11-07T05:31:56Z",
  "name": "<string>",
  "nickname": "<string>",
  "tier": "<string>",
  "commissionRate": 123,
  "privateCommissionRate": 123,
  "standardCommissionRate": 123,
  "dexCommissionRate": 123,
  "markup": 123,
  "walletAddress": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.houdiniswap.com/llms.txt

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

Authorizations

Authorization
string
header
required

Response

Success

id
string
required
email
string
required
created
string<date-time>
required
name
string
nickname
string
tier
string
commissionRate
number<double>

Base commission percentage used when no route-specific commission is set. privateCommissionRate, standardCommissionRate, and dexCommissionRate override this value for their matching order routes.

privateCommissionRate
number<double>

Commission percentage for private/anonymous (2-hop) orders. Overrides commissionRate for this route when set.

standardCommissionRate
number<double>

Commission percentage for standard non-anonymous CEX orders. Overrides commissionRate for this route when set.

dexCommissionRate
number<double>

Commission percentage for DEX/bridge/onchain orders. Overrides commissionRate for this route when set.

markup
number<double> | null

API markup percentage value. 0.65 means 0.65%, not 65%.

walletAddress
string