Read website catalog pages
curl --request GET \
--url https://vibechain.com/api/vibemarket2/catalogimport requests
url = "https://vibechain.com/api/vibemarket2/catalog"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://vibechain.com/api/vibemarket2/catalog', 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://vibechain.com/api/vibemarket2/catalog",
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://vibechain.com/api/vibemarket2/catalog"
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://vibechain.com/api/vibemarket2/catalog")
.asString();require 'uri'
require 'net/http'
url = URI("https://vibechain.com/api/vibemarket2/catalog")
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{
"versions": [
{
"market": "<string>",
"factory": "<string>",
"schema": "<string>",
"label": "<string>",
"runtimeId": "<string>",
"immutableManifest": {
"hash": "<string>",
"ethPerPackWei": "<string>"
},
"foilOddsBps": [
5000
],
"collectLimit": 123,
"collectWindowSeconds": 123,
"firstEditionWindowSeconds": 123,
"maxCreatorPrebuy": 123,
"collectHaircutBps": 123,
"launchTarget": true,
"prizeFoil": true
}
],
"next": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Discovery
Read website catalog pages
Without market, returns enriched source versions. With market, returns a page of display packs for that source’s exact market graph. Preserve loaded pages on failure; do not treat an unavailable projection as an empty catalog.
GET
/
catalog
Read website catalog pages
curl --request GET \
--url https://vibechain.com/api/vibemarket2/catalogimport requests
url = "https://vibechain.com/api/vibemarket2/catalog"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://vibechain.com/api/vibemarket2/catalog', 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://vibechain.com/api/vibemarket2/catalog",
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://vibechain.com/api/vibemarket2/catalog"
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://vibechain.com/api/vibemarket2/catalog")
.asString();require 'uri'
require 'net/http'
url = URI("https://vibechain.com/api/vibemarket2/catalog")
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{
"versions": [
{
"market": "<string>",
"factory": "<string>",
"schema": "<string>",
"label": "<string>",
"runtimeId": "<string>",
"immutableManifest": {
"hash": "<string>",
"ethPerPackWei": "<string>"
},
"foilOddsBps": [
5000
],
"collectLimit": 123,
"collectWindowSeconds": 123,
"firstEditionWindowSeconds": 123,
"maxCreatorPrebuy": 123,
"collectHaircutBps": 123,
"launchTarget": true,
"prizeFoil": true
}
],
"next": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Query Parameters
Source id from /catalog/sources.
Market contract within that source; omit to list versions.
Pattern:
^0x[0-9a-fA-F]{40}$Pattern:
^(0|[1-9][0-9]{0,76})$