Skip to main content
GET
/
v1
/
account
/
referral
Get Account Referral
curl --request GET \
  --url https://api.perpetuals.polymarket.com/v1/account/referral \
  --header 'POLYMARKET-PROXY: <api-key>' \
  --header 'POLYMARKET-SECRET: <api-key>'
{
  "code": "ABC123",
  "children_count": 12,
  "referrals_left": 11,
  "fee_share_rate": "0.2",
  "parent": "ABC123"
}
Request Weight: 1

Authorizations

POLYMARKET-PROXY
string
header
required

Proxy address

POLYMARKET-SECRET
string
header
required

Correponding proxy secret

Response

Account referral response.

code
string
required

Referral or invite code

Example:

"ABC123"

children_count
integer
required

Number of directly referred child accounts

Example:

12

referrals_left
integer
required

Number of additional referrals remaining for this account's invite code

Example:

11

fee_share_rate
string
required

Referral fee share rate. Defaults to 0.2.

Example:

"0.2"

parent
string

Parent referral code, omitted when the account has no parent referral.

Example:

"ABC123"