Get supported assets
curl --request GET \
--url https://bridge.polymarket.com/supported-assetsimport requests
url = "https://bridge.polymarket.com/supported-assets"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://bridge.polymarket.com/supported-assets', 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://bridge.polymarket.com/supported-assets",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://bridge.polymarket.com/supported-assets"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://bridge.polymarket.com/supported-assets")
.asString();require 'uri'
require 'net/http'
url = URI("https://bridge.polymarket.com/supported-assets")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"supportedAssets": [
{
"chainId": "1",
"chainName": "Ethereum",
"token": {
"name": "USD Coin",
"symbol": "USDC",
"address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"decimals": 6
},
"minCheckoutUsd": 45
}
]
}{
"error": "<string>"
}Get supported assets
GET
/
supported-assets
Get supported assets
curl --request GET \
--url https://bridge.polymarket.com/supported-assetsimport requests
url = "https://bridge.polymarket.com/supported-assets"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://bridge.polymarket.com/supported-assets', 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://bridge.polymarket.com/supported-assets",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://bridge.polymarket.com/supported-assets"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://bridge.polymarket.com/supported-assets")
.asString();require 'uri'
require 'net/http'
url = URI("https://bridge.polymarket.com/supported-assets")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"supportedAssets": [
{
"chainId": "1",
"chainName": "Ethereum",
"token": {
"name": "USD Coin",
"symbol": "USDC",
"address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"decimals": 6
},
"minCheckoutUsd": 45
}
]
}{
"error": "<string>"
}Response
Successfully retrieved supported assets
List of supported assets with minimum amounts for deposits and withdrawals
Show child attributes
Show child attributes
Was this page helpful?
⌘I