Identity Provider
API Endpoints
Identity
Get

Get Identity

Gets identity by name using NIP-05 standard


Request

GET /.well-known/nostr.json?name=NAME

Parameters

name : String The NAME to be matched


Response

200

Valid Response

{
  "NAME": "PUBLIC KEY" // returns the public key associated with the name provided
}

404

Name not found

{
  "success": false,
  "reason": "Not found"
}

405

Method Not Allowed

{
  "success": false,
  "reason": "Must use GET method"
}