Skip to main content
DELETE
/
v1
/
account
/
proxy
Delete Proxy
curl --request DELETE \
  --url https://api.perpetuals.polymarket.com/v1/account/proxy \
  --header 'Content-Type: application/json' \
  --data '
{
  "op": {
    "type": "deleteProxy",
    "args": {
      "proxy": "0x70997970C51812dc3A010C7d01b50e0d17dc79C8"
    }
  },
  "sig": "0x9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a1c",
  "salt": 888888888,
  "ts": 1767000020000
}
'
import requests

url = "https://api.perpetuals.polymarket.com/v1/account/proxy"

payload = {
"op": {
"type": "deleteProxy",
"args": { "proxy": "0x70997970C51812dc3A010C7d01b50e0d17dc79C8" }
},
"sig": "0x9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a1c",
"salt": 888888888,
"ts": 1767000020000
}
headers = {"Content-Type": "application/json"}

response = requests.delete(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'DELETE',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
op: {
type: 'deleteProxy',
args: {proxy: '0x70997970C51812dc3A010C7d01b50e0d17dc79C8'}
},
sig: '0x9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a1c',
salt: 888888888,
ts: 1767000020000
})
};

fetch('https://api.perpetuals.polymarket.com/v1/account/proxy', 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/proxy",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_POSTFIELDS => json_encode([
'op' => [
'type' => 'deleteProxy',
'args' => [
'proxy' => '0x70997970C51812dc3A010C7d01b50e0d17dc79C8'
]
],
'sig' => '0x9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a1c',
'salt' => 888888888,
'ts' => 1767000020000
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);

$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/proxy"

payload := strings.NewReader("{\n \"op\": {\n \"type\": \"deleteProxy\",\n \"args\": {\n \"proxy\": \"0x70997970C51812dc3A010C7d01b50e0d17dc79C8\"\n }\n },\n \"sig\": \"0x9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a1c\",\n \"salt\": 888888888,\n \"ts\": 1767000020000\n}")

req, _ := http.NewRequest("DELETE", url, payload)

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.delete("https://api.perpetuals.polymarket.com/v1/account/proxy")
.header("Content-Type", "application/json")
.body("{\n \"op\": {\n \"type\": \"deleteProxy\",\n \"args\": {\n \"proxy\": \"0x70997970C51812dc3A010C7d01b50e0d17dc79C8\"\n }\n },\n \"sig\": \"0x9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a1c\",\n \"salt\": 888888888,\n \"ts\": 1767000020000\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.perpetuals.polymarket.com/v1/account/proxy")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Delete.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"op\": {\n \"type\": \"deleteProxy\",\n \"args\": {\n \"proxy\": \"0x70997970C51812dc3A010C7d01b50e0d17dc79C8\"\n }\n },\n \"sig\": \"0x9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a1c\",\n \"salt\": 888888888,\n \"ts\": 1767000020000\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

Body

application/json

Delete proxy request.

op
object
required
sig
string
required

Signature in hex format

Example:

"0x1234567890..."

salt
integer
required

Salt

Example:

1234567890

ts
integer
required

Request timestamp. Unix milliseconds for most operations; Unix seconds for withdrawals (must match the on-chain EIP-712 struct verified against block.timestamp).

Example:

1767225600000

Response

Delete proxy response.

status
enum<string>
required
Available options:
ok