Safe Send Lookup API

Kred TLD associates .Kred domains with identity information (such as owner names, and avatars) provided by the domain owner. This consists of an API that provides the claimed and verified facts about a wallet owner, and the verification sources so integrators can expose trusted facts to their end users.

/identity
GET

Get details for the user associated with a .Kred domin.

QUERY PARAMS
address
string
OPTIONAL
The Ethereum address associated with a .Kred ENS token.

domain
string
OPTIONAL
A .Kred domain name.

One of address or domain must be provided.

RESPONSE
string
A JSON-encoded list of identity items, each with a item type, a value and a verifiedby field indicating the data source.

[
  {
    "item": "avatar",
    "value": "https://api.grab.live/avatars/socialos/53828874b7725d3b129f834d",
    "verifiedby": "kred"
  },
  {
    "item": "name",
    "value": "Andrew Horn",
    "verifiedby": "kred"
  },
  {
    "item": "domain",
    "value": "artee.kred",
    "verifiedby": "kred"
  },
  {
    "item": "address",
    "value": "0x201547e7E692b5dcA2E465509637c93AeAbE22f7",
    "verifiedby": "kred"
  }
]```