Links
📒

Name API

v0/addresses/:address/names

Does a reverse lookup with the given address for Solana Naming Service domains.
Oops, something is missing.
We could not find the original source to display this content.

Example Use Cases

Human-readable domain names are great for social applications and tracking purposes. Some example use cases:
  • Social feeds
  • Wallet tracking
  • Blockchain Explorers
  • Wallet history

Code Samples

getNames.js
const axios = require('axios')
const url = "https://api.helius.xyz/v0/addresses/<address>/names?api-key=<your-key>"
const getNames = async () => {
const { data } = await axios.get(url)
console.log("domain names: ", data)
}
getNames()