curl --request POST \
--url https://build.vibechain.com/api/vibemarket2/account/delete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'Origin: <origin>' \
--header 'X-VM2-Wallet: <x-vm2-wallet>' \
--data '
{
"address": "<string>",
"nonce": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"expires": 123,
"signature": "<string>"
}
'import requests
url = "https://build.vibechain.com/api/vibemarket2/account/delete"
payload = {
"address": "<string>",
"nonce": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"expires": 123,
"signature": "<string>"
}
headers = {
"Origin": "<origin>",
"X-VM2-Wallet": "<x-vm2-wallet>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
Origin: '<origin>',
'X-VM2-Wallet': '<x-vm2-wallet>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
address: '<string>',
nonce: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
expires: 123,
signature: '<string>'
})
};
fetch('https://build.vibechain.com/api/vibemarket2/account/delete', 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://build.vibechain.com/api/vibemarket2/account/delete",
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([
'address' => '<string>',
'nonce' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'expires' => 123,
'signature' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"Origin: <origin>",
"X-VM2-Wallet: <x-vm2-wallet>"
],
]);
$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://build.vibechain.com/api/vibemarket2/account/delete"
payload := strings.NewReader("{\n \"address\": \"<string>\",\n \"nonce\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"expires\": 123,\n \"signature\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Origin", "<origin>")
req.Header.Add("X-VM2-Wallet", "<x-vm2-wallet>")
req.Header.Add("Authorization", "Bearer <token>")
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://build.vibechain.com/api/vibemarket2/account/delete")
.header("Origin", "<origin>")
.header("X-VM2-Wallet", "<x-vm2-wallet>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"address\": \"<string>\",\n \"nonce\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"expires\": 123,\n \"signature\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://build.vibechain.com/api/vibemarket2/account/delete")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Origin"] = '<origin>'
request["X-VM2-Wallet"] = '<x-vm2-wallet>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"address\": \"<string>\",\n \"nonce\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"expires\": 123,\n \"signature\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Delete hosted account data with fresh consent
Destructive: do not call as a test. Requires account session plus a fresh deletionMessage signature (not a sign-in signature), origin and wallet binding. Removes hosted data and revokes sessions; blockchain records, assets and published asset metadata remain. Abuse reports expire after 90 days; moderation/deletion audit records persist indefinitely. See Authentication and consent for retention and the exact source helper. Maximum body 8192 bytes.
curl --request POST \
--url https://build.vibechain.com/api/vibemarket2/account/delete \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'Origin: <origin>' \
--header 'X-VM2-Wallet: <x-vm2-wallet>' \
--data '
{
"address": "<string>",
"nonce": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"expires": 123,
"signature": "<string>"
}
'import requests
url = "https://build.vibechain.com/api/vibemarket2/account/delete"
payload = {
"address": "<string>",
"nonce": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"expires": 123,
"signature": "<string>"
}
headers = {
"Origin": "<origin>",
"X-VM2-Wallet": "<x-vm2-wallet>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
Origin: '<origin>',
'X-VM2-Wallet': '<x-vm2-wallet>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
address: '<string>',
nonce: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
expires: 123,
signature: '<string>'
})
};
fetch('https://build.vibechain.com/api/vibemarket2/account/delete', 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://build.vibechain.com/api/vibemarket2/account/delete",
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([
'address' => '<string>',
'nonce' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'expires' => 123,
'signature' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"Origin: <origin>",
"X-VM2-Wallet: <x-vm2-wallet>"
],
]);
$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://build.vibechain.com/api/vibemarket2/account/delete"
payload := strings.NewReader("{\n \"address\": \"<string>\",\n \"nonce\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"expires\": 123,\n \"signature\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Origin", "<origin>")
req.Header.Add("X-VM2-Wallet", "<x-vm2-wallet>")
req.Header.Add("Authorization", "Bearer <token>")
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://build.vibechain.com/api/vibemarket2/account/delete")
.header("Origin", "<origin>")
.header("X-VM2-Wallet", "<x-vm2-wallet>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"address\": \"<string>\",\n \"nonce\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"expires\": 123,\n \"signature\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://build.vibechain.com/api/vibemarket2/account/delete")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Origin"] = '<origin>'
request["X-VM2-Wallet"] = '<x-vm2-wallet>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"address\": \"<string>\",\n \"nonce\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"expires\": 123,\n \"signature\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Authorizations
Origin-bound account token. Also send Origin and X-VM2-Wallet. First-party website proxies use the HttpOnly vm2-session cookie; arbitrary third-party origins are not supported.
Headers
Must match the approved origin in the signed consent.
https://vibechain.com, https://www.vibechain.com, https://vibe.market, https://www.vibe.market Must match the account session wallet.
^0x[0-9a-fA-F]{40}$Body
Sign the exact endpoint-specific message. A syntactically valid signature alone is not authorization.
^0x[0-9a-fA-F]{40}$Fresh UUID v4, never reused.
Unix milliseconds; future and no more than five minutes from the server clock.
^0x[0-9a-fA-F]{130}$https://vibechain.com, https://www.vibechain.com, https://vibe.market, https://www.vibe.market Response
Successful response.
The response is of type object.