Get supported custom quote tokens
curl --request GET \
--url https://public-api-v2.bags.fm/api/v1/token-launch/supported-quote-tokens \
--header 'x-api-key: <api-key>'import requests
url = "https://public-api-v2.bags.fm/api/v1/token-launch/supported-quote-tokens"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://public-api-v2.bags.fm/api/v1/token-launch/supported-quote-tokens', 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://public-api-v2.bags.fm/api/v1/token-launch/supported-quote-tokens",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <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"
"net/http"
"io"
)
func main() {
url := "https://public-api-v2.bags.fm/api/v1/token-launch/supported-quote-tokens"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://public-api-v2.bags.fm/api/v1/token-launch/supported-quote-tokens")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://public-api-v2.bags.fm/api/v1/token-launch/supported-quote-tokens")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"response": {
"contractVersion": 1,
"tokens": [
{
"asset": {
"mint": "<string>",
"tokenProgram": "<string>",
"decimals": 123
},
"observedAt": 123,
"observedSlot": "<string>",
"flows": [
{
"flow": "dbc",
"profileEligible": true,
"reviewedForLaunch": true,
"launchAvailability": {
"status": "available",
"reason": "account_mismatch"
},
"configs": [
{
"configType": "fa29606e-5e48-4c37-827f-4b03d58ee23d",
"graduationThresholdRaw": "85000000"
}
]
}
]
}
]
}
}{
"success": false,
"error": "<string>"
}{
"success": false,
"error": "<string>"
}{
"success": false,
"error": "<string>"
}Token Launch
Get supported custom quote tokens
List built-in WSOL and admin-configured non-WSOL DBC quote entries. Each asset appears once, with its DBC configuration types and raw quote graduation thresholds in flows[].configs. Check live profileEligible and launchAvailability before issuing a config; catalog inclusion alone is not an execution guarantee. Thresholds apply to new issuance; already-issued configs retain their parameters. The catalog currently contains DBC entries only; flow=damm_v2_direct returns an empty tokens array.
GET
/
token-launch
/
supported-quote-tokens
Get supported custom quote tokens
curl --request GET \
--url https://public-api-v2.bags.fm/api/v1/token-launch/supported-quote-tokens \
--header 'x-api-key: <api-key>'import requests
url = "https://public-api-v2.bags.fm/api/v1/token-launch/supported-quote-tokens"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://public-api-v2.bags.fm/api/v1/token-launch/supported-quote-tokens', 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://public-api-v2.bags.fm/api/v1/token-launch/supported-quote-tokens",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <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"
"net/http"
"io"
)
func main() {
url := "https://public-api-v2.bags.fm/api/v1/token-launch/supported-quote-tokens"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://public-api-v2.bags.fm/api/v1/token-launch/supported-quote-tokens")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://public-api-v2.bags.fm/api/v1/token-launch/supported-quote-tokens")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"response": {
"contractVersion": 1,
"tokens": [
{
"asset": {
"mint": "<string>",
"tokenProgram": "<string>",
"decimals": 123
},
"observedAt": 123,
"observedSlot": "<string>",
"flows": [
{
"flow": "dbc",
"profileEligible": true,
"reviewedForLaunch": true,
"launchAvailability": {
"status": "available",
"reason": "account_mismatch"
},
"configs": [
{
"configType": "fa29606e-5e48-4c37-827f-4b03d58ee23d",
"graduationThresholdRaw": "85000000"
}
]
}
]
}
]
}
}{
"success": false,
"error": "<string>"
}{
"success": false,
"error": "<string>"
}{
"success": false,
"error": "<string>"
}The catalog includes built-in WSOL configurations and non-WSOL DBC configurations saved by Bags administrators. Each asset appears once, with its available configuration types grouped in
flows[].configs.
For a DBC launch:
- Request
flow=dbcand checkprofileEligibleandlaunchAvailability. - Select a
configsentry and read itsgraduationThresholdRawas raw quote units. - Pass its
configTypeasbagsConfigTypeto Create Custom Quote Fee Share Config Plan, along with the same quote mint and token program.
reviewedForLaunch remains a compatibility field for built-in or admin-configured entries. It does not replace the current availability check. The catalog currently contains DBC entries; flow=damm_v2_direct returns an empty tokens array.
Thresholds describe new config issuance. Later changes to this listing do not alter a config that has already been issued.
See Launch a Token with a Custom Quote for an example and the complete bonding-curve workflow.Authorizations
API key authentication. Provide your API key as the header value.
Query Parameters
Optional flow filter. Omission or dbc returns the DBC catalog; damm_v2_direct currently returns an empty tokens array.
Available options:
dbc, damm_v2_direct 