Submit a signed release action
curl --request POST \
--url https://build.vibechain.com/api/vibemarket2/releases \
--header 'Content-Type: application/json' \
--data '
{
"address": "<string>",
"nonce": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"expires": 123,
"signature": "<string>",
"action": {
"kind": "mine"
}
}
'import requests
url = "https://build.vibechain.com/api/vibemarket2/releases"
payload = {
"address": "<string>",
"nonce": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"expires": 123,
"signature": "<string>",
"action": { "kind": "mine" }
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
address: '<string>',
nonce: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
expires: 123,
signature: '<string>',
action: {kind: 'mine'}
})
};
fetch('https://build.vibechain.com/api/vibemarket2/releases', 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/releases",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'address' => '<string>',
'nonce' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'expires' => 123,
'signature' => '<string>',
'action' => [
'kind' => 'mine'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://build.vibechain.com/api/vibemarket2/releases"
payload := strings.NewReader("{\n \"address\": \"<string>\",\n \"nonce\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"expires\": 123,\n \"signature\": \"<string>\",\n \"action\": {\n \"kind\": \"mine\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://build.vibechain.com/api/vibemarket2/releases")
.header("Content-Type", "application/json")
.body("{\n \"address\": \"<string>\",\n \"nonce\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"expires\": 123,\n \"signature\": \"<string>\",\n \"action\": {\n \"kind\": \"mine\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://build.vibechain.com/api/vibemarket2/releases")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"address\": \"<string>\",\n \"nonce\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"expires\": 123,\n \"signature\": \"<string>\",\n \"action\": {\n \"kind\": \"mine\"\n }\n}"
response = http.request(request)
puts response.read_body{
"releases": [
{
"id": "<string>",
"revision": 1,
"name": "<string>",
"symbol": "<string>",
"image": "<string>",
"color": "<string>",
"baseURI": "<string>",
"description": "<string>",
"launchAt": 1,
"status": "draft",
"owner": "<string>",
"updatedAt": 123,
"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>"
]
},
"cardsOmitted": true
}
],
"wishlist": [
"<string>"
],
"wishedReleases": [
{
"id": "<string>",
"revision": 1,
"name": "<string>",
"symbol": "<string>",
"image": "<string>",
"color": "<string>",
"baseURI": "<string>",
"description": "<string>",
"launchAt": 1,
"status": "draft",
"owner": "<string>",
"updatedAt": 123,
"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>"
]
},
"cardsOmitted": true
}
],
"more": true,
"artworkHash": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Creators
Submit a signed release action
Direct backend signed action (mine, load, save, publish or wishlist). Sign the exact releaseMessage after parseAction canonicalization. Replay/expiry protected; maximum JSON body 512 KiB. Alternatively use an account releases action on the first-party website. This cannot launch a pool or spend tokens.
POST
/
releases
Submit a signed release action
curl --request POST \
--url https://build.vibechain.com/api/vibemarket2/releases \
--header 'Content-Type: application/json' \
--data '
{
"address": "<string>",
"nonce": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"expires": 123,
"signature": "<string>",
"action": {
"kind": "mine"
}
}
'import requests
url = "https://build.vibechain.com/api/vibemarket2/releases"
payload = {
"address": "<string>",
"nonce": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"expires": 123,
"signature": "<string>",
"action": { "kind": "mine" }
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
address: '<string>',
nonce: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
expires: 123,
signature: '<string>',
action: {kind: 'mine'}
})
};
fetch('https://build.vibechain.com/api/vibemarket2/releases', 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/releases",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'address' => '<string>',
'nonce' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'expires' => 123,
'signature' => '<string>',
'action' => [
'kind' => 'mine'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://build.vibechain.com/api/vibemarket2/releases"
payload := strings.NewReader("{\n \"address\": \"<string>\",\n \"nonce\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"expires\": 123,\n \"signature\": \"<string>\",\n \"action\": {\n \"kind\": \"mine\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://build.vibechain.com/api/vibemarket2/releases")
.header("Content-Type", "application/json")
.body("{\n \"address\": \"<string>\",\n \"nonce\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"expires\": 123,\n \"signature\": \"<string>\",\n \"action\": {\n \"kind\": \"mine\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://build.vibechain.com/api/vibemarket2/releases")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"address\": \"<string>\",\n \"nonce\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"expires\": 123,\n \"signature\": \"<string>\",\n \"action\": {\n \"kind\": \"mine\"\n }\n}"
response = http.request(request)
puts response.read_body{
"releases": [
{
"id": "<string>",
"revision": 1,
"name": "<string>",
"symbol": "<string>",
"image": "<string>",
"color": "<string>",
"baseURI": "<string>",
"description": "<string>",
"launchAt": 1,
"status": "draft",
"owner": "<string>",
"updatedAt": 123,
"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>"
]
},
"cardsOmitted": true
}
],
"wishlist": [
"<string>"
],
"wishedReleases": [
{
"id": "<string>",
"revision": 1,
"name": "<string>",
"symbol": "<string>",
"image": "<string>",
"color": "<string>",
"baseURI": "<string>",
"description": "<string>",
"launchAt": 1,
"status": "draft",
"owner": "<string>",
"updatedAt": 123,
"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>"
]
},
"cardsOmitted": true
}
],
"more": true,
"artworkHash": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Body
application/json
Sign the exact endpoint-specific message. A syntactically valid signature alone is not authorization.
Pattern:
^0x[0-9a-fA-F]{40}$Fresh UUID v4, never reused.
Unix milliseconds; future and no more than five minutes from the server clock.
Pattern:
^0x[0-9a-fA-F]{130}$- Option 1
- Option 2
- Option 3
- Option 4
Show child attributes
Show child attributes
Response
Successful response.