DotNames Docs
  • Introduction
    • Terminology
    • Frequently Asked Questions
  • Overview
    • Setup Wallet
    • DotShm
    • DotOmni
    • DotSei
    • DotZeta
    • DotTaiko
  • Developer Guide - API
    • DotTaiko
    • DotSei
  • Developer Guide - SDK
    • DotSei
      • Manual Setup
      • Usage
      • Error Handling
      • Example
    • DotTaiko
      • Manual Setup
      • Usage
  • Links
  • Brand Assets
Powered by GitBook
On this page
  1. Developer Guide - API

DotTaiko

API wrapper for DotTaiko SDK

Get the name for a specified wallet address.

Input:

const walletAddress = '---Enter Wallet Address---'

const response = fetch(`https://api.dottaiko.me/api/resolveAddress/${walletAddress}`)

address: stringTarget wallet address

Output:

name: stringDomain name

Get the address for a specified domain name.

Input:

const domainName = '---Enter Domain Name---'

const response = fetch(`https://api.dottaiko.me/api/resolveName/${domainName}`)

domainName: stringTarget domain name

Output:

address: stringWallet Address

Get the content for a specified domain name.

Input:

const domainName = '---Enter Domain Name---'

const response = fetch(`https://api.dottaiko.me/api/resolveRecord/${domainName}`)

domainName: stringTarget domain name

Output:

data: objectContent (Discord, Github, Twitter, etc.)

PreviousDeveloper Guide - APINextDotSei

Last updated 9 months ago