Apply Referral Code
curl --request POST \
--url https://api.perpetuals.polymarket.com/v1/account/referral \
--header 'Content-Type: application/json' \
--header 'POLYMARKET-PROXY: <api-key>' \
--header 'POLYMARKET-SECRET: <api-key>' \
--data '
{
"code": "ABC123"
}
'import requests
url = "https://api.perpetuals.polymarket.com/v1/account/referral"
payload = { "code": "ABC123" }
headers = {
"POLYMARKET-PROXY": "<api-key>",
"POLYMARKET-SECRET": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'POLYMARKET-PROXY': '<api-key>',
'POLYMARKET-SECRET': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({code: 'ABC123'})
};
fetch('https://api.perpetuals.polymarket.com/v1/account/referral', 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.perpetuals.polymarket.com/v1/account/referral",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'code' => 'ABC123'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"POLYMARKET-PROXY: <api-key>",
"POLYMARKET-SECRET: <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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.perpetuals.polymarket.com/v1/account/referral"
payload := strings.NewReader("{\n \"code\": \"ABC123\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("POLYMARKET-PROXY", "<api-key>")
req.Header.Add("POLYMARKET-SECRET", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.perpetuals.polymarket.com/v1/account/referral")
.header("POLYMARKET-PROXY", "<api-key>")
.header("POLYMARKET-SECRET", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"code\": \"ABC123\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.perpetuals.polymarket.com/v1/account/referral")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["POLYMARKET-PROXY"] = '<api-key>'
request["POLYMARKET-SECRET"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"code\": \"ABC123\"\n}"
response = http.request(request)
puts response.read_body{
"status": "ok"
}{
"status": "err",
"error": "insufficient_margin"
}{
"status": "err",
"error": "insufficient_margin"
}{
"status": "err",
"error": "insufficient_margin"
}{
"status": "err",
"error": "insufficient_margin"
}Apply a referral code to the authenticated account after signup. Accounts can only apply a referral code if they do not already have one.
POST
/
v1
/
account
/
referral
Apply Referral Code
curl --request POST \
--url https://api.perpetuals.polymarket.com/v1/account/referral \
--header 'Content-Type: application/json' \
--header 'POLYMARKET-PROXY: <api-key>' \
--header 'POLYMARKET-SECRET: <api-key>' \
--data '
{
"code": "ABC123"
}
'import requests
url = "https://api.perpetuals.polymarket.com/v1/account/referral"
payload = { "code": "ABC123" }
headers = {
"POLYMARKET-PROXY": "<api-key>",
"POLYMARKET-SECRET": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'POLYMARKET-PROXY': '<api-key>',
'POLYMARKET-SECRET': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({code: 'ABC123'})
};
fetch('https://api.perpetuals.polymarket.com/v1/account/referral', 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.perpetuals.polymarket.com/v1/account/referral",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'code' => 'ABC123'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"POLYMARKET-PROXY: <api-key>",
"POLYMARKET-SECRET: <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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.perpetuals.polymarket.com/v1/account/referral"
payload := strings.NewReader("{\n \"code\": \"ABC123\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("POLYMARKET-PROXY", "<api-key>")
req.Header.Add("POLYMARKET-SECRET", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.perpetuals.polymarket.com/v1/account/referral")
.header("POLYMARKET-PROXY", "<api-key>")
.header("POLYMARKET-SECRET", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"code\": \"ABC123\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.perpetuals.polymarket.com/v1/account/referral")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["POLYMARKET-PROXY"] = '<api-key>'
request["POLYMARKET-SECRET"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"code\": \"ABC123\"\n}"
response = http.request(request)
puts response.read_body{
"status": "ok"
}{
"status": "err",
"error": "insufficient_margin"
}{
"status": "err",
"error": "insufficient_margin"
}{
"status": "err",
"error": "insufficient_margin"
}{
"status": "err",
"error": "insufficient_margin"
}Request Weight: 1
Authorizations
Proxy address
Correponding proxy secret
Body
application/json
Referral code to apply.
Referral or invite code
Example:
"ABC123"
Response
Referral code accepted.
Available options:
ok Was this page helpful?
⌘I