Load a complete pack edit snapshot
curl --request GET \
--url https://build.vibechain.com/api/vibemarket2/runtime/{version}/pack-edit/{id}import requests
url = "https://build.vibechain.com/api/vibemarket2/runtime/{version}/pack-edit/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://build.vibechain.com/api/vibemarket2/runtime/{version}/pack-edit/{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://build.vibechain.com/api/vibemarket2/runtime/{version}/pack-edit/{id}",
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}/pack-edit/{id}"
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}/pack-edit/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://build.vibechain.com/api/vibemarket2/runtime/{version}/pack-edit/{id}")
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{
"launchTx": "<string>",
"revision": 123,
"owner": "<string>",
"createdAt": 123,
"editableUntil": 123,
"effectiveAt": 123,
"release": {
"id": "<string>",
"revision": 1,
"name": "<string>",
"symbol": "<string>",
"image": "<string>",
"color": "<string>",
"baseURI": "<string>",
"description": "<string>",
"launchAt": 1,
"status": "draft",
"links": {
"website": "<string>",
"x": "<string>",
"telegram": "<string>"
},
"design": {
"accent": "<string>",
"pattern": "solid",
"mask": "full",
"cardsByRarity": [
[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"image": "<string>",
"attributes": [
{
"trait_type": "<string>",
"value": "<string>"
}
],
"mask": "<string>",
"firstEditionImage": "<string>"
}
]
],
"strokes": [
[
123
]
],
"tierImages": [
"<string>"
],
"cardImage": "<string>",
"tierMasks": [
"<string>"
]
}
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Creators
Load a complete pack edit snapshot
Full creator artwork, launch identity, revision and millisecond edit-window timestamps. Read-only and no-store; creator authorization is enforced on writes.
GET
/
runtime
/
{version}
/
pack-edit
/
{id}
Load a complete pack edit snapshot
curl --request GET \
--url https://build.vibechain.com/api/vibemarket2/runtime/{version}/pack-edit/{id}import requests
url = "https://build.vibechain.com/api/vibemarket2/runtime/{version}/pack-edit/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://build.vibechain.com/api/vibemarket2/runtime/{version}/pack-edit/{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://build.vibechain.com/api/vibemarket2/runtime/{version}/pack-edit/{id}",
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}/pack-edit/{id}"
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}/pack-edit/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://build.vibechain.com/api/vibemarket2/runtime/{version}/pack-edit/{id}")
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{
"launchTx": "<string>",
"revision": 123,
"owner": "<string>",
"createdAt": 123,
"editableUntil": 123,
"effectiveAt": 123,
"release": {
"id": "<string>",
"revision": 1,
"name": "<string>",
"symbol": "<string>",
"image": "<string>",
"color": "<string>",
"baseURI": "<string>",
"description": "<string>",
"launchAt": 1,
"status": "draft",
"links": {
"website": "<string>",
"x": "<string>",
"telegram": "<string>"
},
"design": {
"accent": "<string>",
"pattern": "solid",
"mask": "full",
"cardsByRarity": [
[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"image": "<string>",
"attributes": [
{
"trait_type": "<string>",
"value": "<string>"
}
],
"mask": "<string>",
"firstEditionImage": "<string>"
}
]
],
"strokes": [
[
123
]
],
"tierImages": [
"<string>"
],
"cardImage": "<string>",
"tierMasks": [
"<string>"
]
}
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Path Parameters
Runtime id from /runtime/versions or catalog/sources; never infer the newest revision from its name.
Pattern:
^[1-9][0-9]{0,77}$Response
Successful response.
Pattern:
^0x[0-9a-fA-F]{40}$Announced releases require a nonempty name, uppercase alphanumeric symbol and non-null launchAt. load a full draft before saving if cardsOmitted is true.
Show child attributes
Show child attributes