Get Token metadata
curl --request GET \
--url https://solana-gateway.moralis.io/token/{network}/{address}/metadata \
--header 'X-Api-Key: <api-key>'import requests
url = "https://solana-gateway.moralis.io/token/{network}/{address}/metadata"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://solana-gateway.moralis.io/token/{network}/{address}/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://solana-gateway.moralis.io/token/{network}/{address}/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-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://solana-gateway.moralis.io/token/{network}/{address}/metadata"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-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://solana-gateway.moralis.io/token/{network}/{address}/metadata")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://solana-gateway.moralis.io/token/{network}/{address}/metadata")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"mint": "<string>",
"standard": "<string>",
"name": "<string>",
"symbol": "<string>",
"logo": "<string>",
"decimals": "<string>",
"tokenStandard": 123,
"score": 123,
"totalSupply": "<string>",
"totalSupplyFormatted": "<string>",
"fullyDilutedValue": "<string>",
"marketCap": "<string>",
"circulatingSupply": "<string>",
"metaplex": {
"metadataUri": "<string>",
"masterEdition": true,
"isMutable": true,
"primarySaleHappened": 123,
"sellerFeeBasisPoints": 123,
"updateAuthority": "<string>"
},
"links": {},
"description": "<string>",
"isVerifiedContract": true,
"possibleSpam": true
}Metadata & Info
Token Metadata
Get the global token metadata for a given network and contract (mint, standard, name, symbol, metaplex).
GET
/
token
/
{network}
/
{address}
/
metadata
Get Token metadata
curl --request GET \
--url https://solana-gateway.moralis.io/token/{network}/{address}/metadata \
--header 'X-Api-Key: <api-key>'import requests
url = "https://solana-gateway.moralis.io/token/{network}/{address}/metadata"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://solana-gateway.moralis.io/token/{network}/{address}/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://solana-gateway.moralis.io/token/{network}/{address}/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-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://solana-gateway.moralis.io/token/{network}/{address}/metadata"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-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://solana-gateway.moralis.io/token/{network}/{address}/metadata")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://solana-gateway.moralis.io/token/{network}/{address}/metadata")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"mint": "<string>",
"standard": "<string>",
"name": "<string>",
"symbol": "<string>",
"logo": "<string>",
"decimals": "<string>",
"tokenStandard": 123,
"score": 123,
"totalSupply": "<string>",
"totalSupplyFormatted": "<string>",
"fullyDilutedValue": "<string>",
"marketCap": "<string>",
"circulatingSupply": "<string>",
"metaplex": {
"metadataUri": "<string>",
"masterEdition": true,
"isMutable": true,
"primarySaleHappened": 123,
"sellerFeeBasisPoints": 123,
"updateAuthority": "<string>"
},
"links": {},
"description": "<string>",
"isVerifiedContract": true,
"possibleSpam": true
}⌘I

