XRP Web3 Identity
WebsiteAppTwitter
  • Overview
    • Vision
    • Benefit
    • Features
    • Q&A
    • XRPL Hackathon: Winner
  • - Getting Started -
    • Technical
      • Metadata
    • Tutorials
      • User Guide for Registration
      • User Guide for Transfer
    • Articles
      • XRP Domains: Clarifying Community Concerns
      • XRP Domains: Technical talk
    • Marketplace
    • Products
    • Programs
      • Referral Program
  • - Developer Guide -
    • XRPL Name SDK
      • XRPLID SDK
      • XRPLID API
  • Official Links
    • Website
    • Twitter
    • Github
Powered by GitBook
On this page
  • isOwner
  • Resolve Names
  • Reverse Resolve Names
  • Get All Names
  1. - Developer Guide -
  2. XRPL Name SDK

XRPLID API

This is a beta version that will be continuously improved.

We are also provides a free HTTP API to help any dApps to integrate the name-resolving and reverse-name-resolving service.

isOwner

GET https://app.xrpdomains.xyz/api/xrplnft/isOwner

https://app.xrpdomains.xyz/api/xrplnft/isOwner?address=rLhi87aSCyNW88tW4632yLiwinbghFZNue

Query Parameters

Name
Type
Description

address*

rLhi87aSCyNW88tW4632yLiwinbghFZNue

{
    "status": true,
    "message": "Success",
    "data": true
}

Resolve Names

Resolve .xrp name to get the address of the owner.

GET https://app.xrpdomains.xyz/api/xrplnft/getAddress

https://app.xrpdomains.xyz/api/xrplnft/getAddress?domain=xrpdomains.xrp

Query Parameters

Name
Type
Description

domain*

xrpdomains.xrp

{
    "status": true,
    "message": "Success",
    "data": { 
        "owner": "rLhi87aSCyNW88tW4632yLiwinbghFZNue",
        "metadata": [
        ]
    }
}

Reverse Resolve Names

GET https://app.xrpdomains.xyz/api/xrplnft/getName

https://app.xrpdomains.xyz/api/xrplnft/getName?address=rLhi87aSCyNW88tW4632yLiwinbghFZNue

Query Parameters

Name
Type
Description

address*

rLhi87aSCyNW88tW4632yLiwinbghFZNue

{
    status: true,
    message: "Success",
    data: "hello.xrp"
}

Get All Names

GET https://app.xrpdomains.xyz/api/xrplnft/getAllNames

https://app.xrpdomains.xyz/api/xrplnft/getAllNames?address=rLhi87aSCyNW88tW4632yLiwinbghFZNue

Query Parameters

Name
Type
Description

address*

rLhi87aSCyNW88tW4632yLiwinbghFZNue

{
    status: true,
    message: "Success",
    data: ["xrpdomain.xrp","xrpdomains.xrp",]
}

Please contact [email protected] if you have any questions about integration.

PreviousXRPLID SDK

Last updated 2 years ago