Get Asset
curl --request GET \
--url https://rwapulse.xyz/api/v0/liquidity/asset/{symbol} \
--header 'Authorization: Bearer <token>'import requests
url = "https://rwapulse.xyz/api/v0/liquidity/asset/{symbol}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://rwapulse.xyz/api/v0/liquidity/asset/{symbol}', 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://rwapulse.xyz/api/v0/liquidity/asset/{symbol}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://rwapulse.xyz/api/v0/liquidity/asset/{symbol}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://rwapulse.xyz/api/v0/liquidity/asset/{symbol}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://rwapulse.xyz/api/v0/liquidity/asset/{symbol}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_bodyLiquidity
Get Asset
Get detailed data for one asset
GET
/
liquidity
/
asset
/
{symbol}
Get Asset
curl --request GET \
--url https://rwapulse.xyz/api/v0/liquidity/asset/{symbol} \
--header 'Authorization: Bearer <token>'import requests
url = "https://rwapulse.xyz/api/v0/liquidity/asset/{symbol}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://rwapulse.xyz/api/v0/liquidity/asset/{symbol}', 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://rwapulse.xyz/api/v0/liquidity/asset/{symbol}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://rwapulse.xyz/api/v0/liquidity/asset/{symbol}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://rwapulse.xyz/api/v0/liquidity/asset/{symbol}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://rwapulse.xyz/api/v0/liquidity/asset/{symbol}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_bodyReturns detailed liquidity breakdown for a single asset including issuer and network splits.
curl "https://rwapulse.xyz/api/v0/liquidity/asset/TSLA" \
-H "Authorization: Bearer rwa_your_key"
Path Parameters
| Name | Required | Description |
|---|---|---|
symbol | Yes | Asset symbol (e.g., TSLA, Gold) |
Response
{
"symbol": "TSLA",
"assetType": "stock",
"totalTvl": 150000,
"totalVolume": 12000,
"history": {
"7d": { "tvl": 140000, "tvlChange": 7.14 },
"30d": { "tvl": 130000, "tvlChange": 15.38 }
},
"issuers": [
{
"name": "xStocks",
"tokenSymbol": "TSLAx",
"totalTvl": 100000,
"totalVolume": 8000,
"networks": [
{
"network": "solana",
"tvl": 100000,
"pools": [...]
}
]
}
],
"marketData": {
"onChainMarketCap": 5000000,
"tradfiAssetPrice": 250.50
}
}
Common Mistake
Symbol must match exactly. UseTSLA not tsla or Tesla.⌘I