Asset Metadata
curl --request GET \
--url https://api.invezo.com/v1/assets/metadata \
--header 'x-invezo-api-key: <api-key>'import requests
url = "https://api.invezo.com/v1/assets/metadata"
headers = {"x-invezo-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-invezo-api-key': '<api-key>'}};
fetch('https://api.invezo.com/v1/assets/metadata', 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://api.invezo.com/v1/assets/metadata",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-invezo-api-key: <api-key>"
],
]);
$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://api.invezo.com/v1/assets/metadata"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-invezo-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.invezo.com/v1/assets/metadata")
.header("x-invezo-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.invezo.com/v1/assets/metadata")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-invezo-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"status": "OK",
"request_id": "",
"result_count": 5000,
"data": [
{
"symbol": "BTC",
"name": "Bitcoin",
"description": "Decentralized peer-to-peer transactions",
"images": {
"small": "https://cdn.invezo.com/assets/small/btc.png",
"medium": "https://cdn.invezo.com/assets/medium/btc.png",
"large": "https://cdn.invezo.com/assets/large/btc.png"
},
"links": [
{
"name": "Reddit",
"url": "https://www.reddit.com/r/Bitcoin/",
"type": "Community"
},
{
"name": "Twitter",
"url": "https://twitter.com/bitcoin",
"type": "Community"
},
{
"name": "Facebook",
"url": "https://www.facebook.com/bitcoins",
"type": "Community"
},
{
"name": "GitHub",
"url": "https://github.com/bitcoin/bitcoin",
"type": "Developer"
},
{
"name": "Blockchair",
"url": "https://blockchair.com/bitcoin/",
"type": "Explorer"
},
{
"name": "BTC.com",
"url": "https://btc.com/",
"type": "Explorer"
},
{
"name": "TokenView",
"url": "https://btc.tokenview.com/",
"type": "Explorer"
}
],
"categories": [
"Top Assets"
],
"platform": "native"
},
{
"symbol": "ETH",
"name": "Ethereum",
"description": "Open blockchain for building decentralized applications",
"images": {
"small": "https://cdn.invezo.com/assets/small/eth.png",
"medium": "https://cdn.invezo.com/assets/medium/eth.png",
"large": "https://cdn.invezo.com/assets/large/eth.png"
},
"links": [
{
"name": "Reddit",
"url": "https://www.reddit.com/r/ethereum",
"type": "Community"
},
{
"name": "Twitter",
"url": "https://twitter.com/ethereum",
"type": "Community"
},
{
"name": "Facebook",
"url": "https://www.facebook.com/ethereumproject",
"type": "Community"
},
{
"name": "GitHub",
"url": "https://github.com/ethereum/go-ethereum",
"type": "Developer"
},
{
"name": "Etherscan",
"url": "https://etherscan.io/",
"type": "Explorer"
},
{
"name": "Ethplorer",
"url": "https://ethplorer.io/",
"type": "Explorer"
},
{
"name": "Blockchair",
"url": "https://blockchair.com/ethereum",
"type": "Explorer"
},
{
"name": "TokenView",
"url": "https://eth.tokenview.com/",
"type": "Explorer"
}
],
"categories": [
"Top Assets"
],
"platform": "native"
},
...
]
}
Reference
Asset Metadata
GET
/
v1
/
assets
/
metadata
Asset Metadata
curl --request GET \
--url https://api.invezo.com/v1/assets/metadata \
--header 'x-invezo-api-key: <api-key>'import requests
url = "https://api.invezo.com/v1/assets/metadata"
headers = {"x-invezo-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-invezo-api-key': '<api-key>'}};
fetch('https://api.invezo.com/v1/assets/metadata', 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://api.invezo.com/v1/assets/metadata",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-invezo-api-key: <api-key>"
],
]);
$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://api.invezo.com/v1/assets/metadata"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-invezo-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.invezo.com/v1/assets/metadata")
.header("x-invezo-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.invezo.com/v1/assets/metadata")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-invezo-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"status": "OK",
"request_id": "",
"result_count": 5000,
"data": [
{
"symbol": "BTC",
"name": "Bitcoin",
"description": "Decentralized peer-to-peer transactions",
"images": {
"small": "https://cdn.invezo.com/assets/small/btc.png",
"medium": "https://cdn.invezo.com/assets/medium/btc.png",
"large": "https://cdn.invezo.com/assets/large/btc.png"
},
"links": [
{
"name": "Reddit",
"url": "https://www.reddit.com/r/Bitcoin/",
"type": "Community"
},
{
"name": "Twitter",
"url": "https://twitter.com/bitcoin",
"type": "Community"
},
{
"name": "Facebook",
"url": "https://www.facebook.com/bitcoins",
"type": "Community"
},
{
"name": "GitHub",
"url": "https://github.com/bitcoin/bitcoin",
"type": "Developer"
},
{
"name": "Blockchair",
"url": "https://blockchair.com/bitcoin/",
"type": "Explorer"
},
{
"name": "BTC.com",
"url": "https://btc.com/",
"type": "Explorer"
},
{
"name": "TokenView",
"url": "https://btc.tokenview.com/",
"type": "Explorer"
}
],
"categories": [
"Top Assets"
],
"platform": "native"
},
{
"symbol": "ETH",
"name": "Ethereum",
"description": "Open blockchain for building decentralized applications",
"images": {
"small": "https://cdn.invezo.com/assets/small/eth.png",
"medium": "https://cdn.invezo.com/assets/medium/eth.png",
"large": "https://cdn.invezo.com/assets/large/eth.png"
},
"links": [
{
"name": "Reddit",
"url": "https://www.reddit.com/r/ethereum",
"type": "Community"
},
{
"name": "Twitter",
"url": "https://twitter.com/ethereum",
"type": "Community"
},
{
"name": "Facebook",
"url": "https://www.facebook.com/ethereumproject",
"type": "Community"
},
{
"name": "GitHub",
"url": "https://github.com/ethereum/go-ethereum",
"type": "Developer"
},
{
"name": "Etherscan",
"url": "https://etherscan.io/",
"type": "Explorer"
},
{
"name": "Ethplorer",
"url": "https://ethplorer.io/",
"type": "Explorer"
},
{
"name": "Blockchair",
"url": "https://blockchair.com/ethereum",
"type": "Explorer"
},
{
"name": "TokenView",
"url": "https://eth.tokenview.com/",
"type": "Explorer"
}
],
"categories": [
"Top Assets"
],
"platform": "native"
},
...
]
}
Query Parameters
Comma separated list of asset symbols (example: btc,eth).
{
"status": "OK",
"request_id": "",
"result_count": 5000,
"data": [
{
"symbol": "BTC",
"name": "Bitcoin",
"description": "Decentralized peer-to-peer transactions",
"images": {
"small": "https://cdn.invezo.com/assets/small/btc.png",
"medium": "https://cdn.invezo.com/assets/medium/btc.png",
"large": "https://cdn.invezo.com/assets/large/btc.png"
},
"links": [
{
"name": "Reddit",
"url": "https://www.reddit.com/r/Bitcoin/",
"type": "Community"
},
{
"name": "Twitter",
"url": "https://twitter.com/bitcoin",
"type": "Community"
},
{
"name": "Facebook",
"url": "https://www.facebook.com/bitcoins",
"type": "Community"
},
{
"name": "GitHub",
"url": "https://github.com/bitcoin/bitcoin",
"type": "Developer"
},
{
"name": "Blockchair",
"url": "https://blockchair.com/bitcoin/",
"type": "Explorer"
},
{
"name": "BTC.com",
"url": "https://btc.com/",
"type": "Explorer"
},
{
"name": "TokenView",
"url": "https://btc.tokenview.com/",
"type": "Explorer"
}
],
"categories": [
"Top Assets"
],
"platform": "native"
},
{
"symbol": "ETH",
"name": "Ethereum",
"description": "Open blockchain for building decentralized applications",
"images": {
"small": "https://cdn.invezo.com/assets/small/eth.png",
"medium": "https://cdn.invezo.com/assets/medium/eth.png",
"large": "https://cdn.invezo.com/assets/large/eth.png"
},
"links": [
{
"name": "Reddit",
"url": "https://www.reddit.com/r/ethereum",
"type": "Community"
},
{
"name": "Twitter",
"url": "https://twitter.com/ethereum",
"type": "Community"
},
{
"name": "Facebook",
"url": "https://www.facebook.com/ethereumproject",
"type": "Community"
},
{
"name": "GitHub",
"url": "https://github.com/ethereum/go-ethereum",
"type": "Developer"
},
{
"name": "Etherscan",
"url": "https://etherscan.io/",
"type": "Explorer"
},
{
"name": "Ethplorer",
"url": "https://ethplorer.io/",
"type": "Explorer"
},
{
"name": "Blockchair",
"url": "https://blockchair.com/ethereum",
"type": "Explorer"
},
{
"name": "TokenView",
"url": "https://eth.tokenview.com/",
"type": "Explorer"
}
],
"categories": [
"Top Assets"
],
"platform": "native"
},
...
]
}
⌘I

