Read wallet points audit
curl --request GET \
--url https://build.vibechain.com/api/vibemarket2/runtime/{version}/pointsimport requests
url = "https://build.vibechain.com/api/vibemarket2/runtime/{version}/points"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://build.vibechain.com/api/vibemarket2/runtime/{version}/points', 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}/points",
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}/points"
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}/points")
.asString();require 'uri'
require 'net/http'
url = URI("https://build.vibechain.com/api/vibemarket2/runtime/{version}/points")
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{
"totalUnits": "<string>",
"earnedUnits": "<string>",
"referralUnits": "<string>",
"sinceBlock": 123,
"entries": [
{}
],
"head": {
"scope": "<string>",
"nextBlock": 123,
"blockHash": "<string>",
"revision": 123,
"updatedAt": 123,
"failure": "<string>",
"observedHead": 123,
"observedAt": 123,
"webhookAudit": {}
},
"next": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Indexed market
Read wallet points audit
Read totals and credited/reversed audit entries for a wallet in this runtime. Units are decimal strings. Treat next as opaque. Points are indexed accounting, not an HTTP claim or withdrawal.
GET
/
runtime
/
{version}
/
points
Read wallet points audit
curl --request GET \
--url https://build.vibechain.com/api/vibemarket2/runtime/{version}/pointsimport requests
url = "https://build.vibechain.com/api/vibemarket2/runtime/{version}/points"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://build.vibechain.com/api/vibemarket2/runtime/{version}/points', 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}/points",
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}/points"
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}/points")
.asString();require 'uri'
require 'net/http'
url = URI("https://build.vibechain.com/api/vibemarket2/runtime/{version}/points")
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{
"totalUnits": "<string>",
"earnedUnits": "<string>",
"referralUnits": "<string>",
"sinceBlock": 123,
"entries": [
{}
],
"head": {
"scope": "<string>",
"nextBlock": 123,
"blockHash": "<string>",
"revision": 123,
"updatedAt": 123,
"failure": "<string>",
"observedHead": 123,
"observedAt": 123,
"webhookAudit": {}
},
"next": "<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.
Query Parameters
Wallet.
Pattern:
^0x[0-9a-fA-F]{40}$Required range:
1 <= x <= 100Opaque continuation cursor from this same resource and filter.
Maximum string length:
1600Response
Successful response.
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]+$Exact nonnegative integer; parse as BigInt, not a floating-point number.
Pattern:
^[0-9]+$Show child attributes
Show child attributes
Opaque next-page cursor. Null ends pagination.