Read indexed catalog page
curl --request GET \
--url https://build.vibechain.com/api/vibemarket2/runtime/{version}/catalogimport requests
url = "https://build.vibechain.com/api/vibemarket2/runtime/{version}/catalog"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://build.vibechain.com/api/vibemarket2/runtime/{version}/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://build.vibechain.com/api/vibemarket2/runtime/{version}/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://build.vibechain.com/api/vibemarket2/runtime/{version}/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://build.vibechain.com/api/vibemarket2/runtime/{version}/catalog")
.asString();require 'uri'
require 'net/http'
url = URI("https://build.vibechain.com/api/vibemarket2/runtime/{version}/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{
"items": [
{
"id": "<string>",
"name": "<string>",
"symbol": "<string>",
"creator": "<string>",
"token": "<string>",
"createdTx": "<string>",
"canonicalSlug": "<string>"
}
],
"head": {
"scope": "<string>",
"nextBlock": 123,
"blockHash": "<string>",
"revision": 123,
"updatedAt": 123,
"failure": "<string>",
"observedHead": 123,
"observedAt": 123,
"webhookAudit": {}
},
"total": "<string>",
"next": "<string>",
"graph": {
"id": "<string>",
"chainId": 123,
"market": "<string>",
"factory": "<string>",
"schema": "<string>"
}
}{
"error": "<string>"
}{
"error": "<string>"
}Indexed market
Read indexed catalog page
Fixed 24-row catalog page, ordered by drop ID. Start after=0 and reuse next until null. total is a decimal string. The returned graph must match the runtime identity used by your transaction client. Unknown runtime or invalid cursor returns 400; stale/incomplete projection returns 503.
GET
/
runtime
/
{version}
/
catalog
Read indexed catalog page
curl --request GET \
--url https://build.vibechain.com/api/vibemarket2/runtime/{version}/catalogimport requests
url = "https://build.vibechain.com/api/vibemarket2/runtime/{version}/catalog"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://build.vibechain.com/api/vibemarket2/runtime/{version}/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://build.vibechain.com/api/vibemarket2/runtime/{version}/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://build.vibechain.com/api/vibemarket2/runtime/{version}/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://build.vibechain.com/api/vibemarket2/runtime/{version}/catalog")
.asString();require 'uri'
require 'net/http'
url = URI("https://build.vibechain.com/api/vibemarket2/runtime/{version}/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{
"items": [
{
"id": "<string>",
"name": "<string>",
"symbol": "<string>",
"creator": "<string>",
"token": "<string>",
"createdTx": "<string>",
"canonicalSlug": "<string>"
}
],
"head": {
"scope": "<string>",
"nextBlock": 123,
"blockHash": "<string>",
"revision": 123,
"updatedAt": 123,
"failure": "<string>",
"observedHead": 123,
"observedAt": 123,
"webhookAudit": {}
},
"total": "<string>",
"next": "<string>",
"graph": {
"id": "<string>",
"chainId": 123,
"market": "<string>",
"factory": "<string>",
"schema": "<string>"
}
}{
"error": "<string>"
}{
"error": "<string>"
}Path Parameters
Runtime id from /runtime/versions or catalog/sources; never infer the newest revision from its name.
Query Parameters
Pattern:
^(0|[1-9][0-9]{0,76})$Response
Successful response.
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Exact nonnegative integer; parse as BigInt, not a floating-point number.
Pattern:
^[0-9]+$Exact nonnegative integer; parse as BigInt, not a floating-point number.
Pattern:
^[0-9]+$Show child attributes
Show child attributes