Remove a connected external wallet from an offer option
curl --request DELETE \
--url https://api.coinlist.co/v1/offers/{offer_id}/addresses/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.coinlist.co/v1/offers/{offer_id}/addresses/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.coinlist.co/v1/offers/{offer_id}/addresses/{id}', 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.coinlist.co/v1/offers/{offer_id}/addresses/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.coinlist.co/v1/offers/{offer_id}/addresses/{id}"
req, _ := http.NewRequest("DELETE", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.coinlist.co/v1/offers/{offer_id}/addresses/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.coinlist.co/v1/offers/{offer_id}/addresses/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"address": "<string>",
"created_at": "2025-01-01T00:00:00.000000Z",
"id": "05edea81-98a7-4582-aa7c-040d57cb1858",
"offer_option_id": "05edea81-98a7-4582-aa7c-040d57cb1858",
"protocol": "ethereum"
}{
"message": "<string>",
"type": "api_error",
"code": "<string>",
"errors": {},
"event_id": "<string>"
}Offers
Remove a connected external wallet from an offer option
Returns the removed binding. Rejected with offer_ended once the offer has ended; bindings on an offer that has not yet started remain deletable.
DELETE
/
v1
/
offers
/
{offer_id}
/
addresses
/
{id}
Remove a connected external wallet from an offer option
curl --request DELETE \
--url https://api.coinlist.co/v1/offers/{offer_id}/addresses/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.coinlist.co/v1/offers/{offer_id}/addresses/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.coinlist.co/v1/offers/{offer_id}/addresses/{id}', 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.coinlist.co/v1/offers/{offer_id}/addresses/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.coinlist.co/v1/offers/{offer_id}/addresses/{id}"
req, _ := http.NewRequest("DELETE", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.coinlist.co/v1/offers/{offer_id}/addresses/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.coinlist.co/v1/offers/{offer_id}/addresses/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"address": "<string>",
"created_at": "2025-01-01T00:00:00.000000Z",
"id": "05edea81-98a7-4582-aa7c-040d57cb1858",
"offer_option_id": "05edea81-98a7-4582-aa7c-040d57cb1858",
"protocol": "ethereum"
}{
"message": "<string>",
"type": "api_error",
"code": "<string>",
"errors": {},
"event_id": "<string>"
}Authorizations
OAuth 2.0 authorization and token endpoints
Path Parameters
The ID of the offer
The ID of the offer option address
Response
Successful response.
A user's proven external wallet connected to an offer option.
The connected external wallet address.
When the binding was created.
Example:
"2025-01-01T00:00:00.000000Z"
Unique identifier for the object.
Example:
"05edea81-98a7-4582-aa7c-040d57cb1858"
The ID of the offer option.
Example:
"05edea81-98a7-4582-aa7c-040d57cb1858"
The protocol the binding is scoped to. An EVM address binds once per option regardless of which EVM chain proved ownership.
Available options:
ethereum, solana