Skip to main content
GET
/
kvaults
/
mints
/
{pubkey}
/
metadata
Get metadata for KVault token
curl --request GET \
  --url https://api.kamino.finance/kvaults/mints/{pubkey}/metadata
const options = {method: 'GET'};

fetch('https://api.kamino.finance/kvaults/mints/{pubkey}/metadata', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.kamino.finance/kvaults/mints/{pubkey}/metadata"

response = requests.get(url)

print(response.text)
false
{
  "name": "<string>",
  "symbol": "<string>",
  "description": "<string>",
  "image": "<string>"
}
{
"error": "Invalid query request",
"details": [
{
"code": "invalid_union",
"errors": [
[
{
"code": "custom",
"path": [],
"message": "Invalid date string"
}
],
[
{
"expected": "number",
"code": "invalid_type",
"path": [],
"message": "Invalid input: expected number, received string"
}
]
],
"path": [
"start"
],
"message": "Invalid input"
}
]
}
{
"metadata": "Account could not be found"
}
{
"error": "An internal error occurred"
}

Path Parameters

pubkey
string
required

Valid base58-encoded address

Example:

"VEG1EMtttdHunMbSza8uoms1R18VXmYSph2bBpHcSJd"

Query Parameters

env
enum<string>
default:mainnet-beta

Solana cluster environment

Available options:
mainnet-beta,
devnet,
localnet
Example:

"mainnet-beta"

Response

OK

name
string
required

The name of the token

symbol
string
required

The symbol of the token

description
string
required

A description of the token

image
string<uri>
required

A URL pointing to an image of the token