getPrimaryNameRequest

getPrimaryNameRequest is a method on the ARIO class that retrieves the primary name request for a specified wallet address.

getPrimaryNameRequest does not require authentication.

Examples

getPrimaryNameRequest

const request = await ario.getPrimaryNameRequest({
    initiator: 't4Xr0_J4Iurt7caNST02cMotaz2FIbWQ4Kbj616RHl3'
});

Parameters

ParameterTypeDescriptionOptional
initiatorstring - WalletAddress

The public wallet address for which to receive primary name request data.

false

Output

{
  "initiator": "t4Xr0_J4Iurt7caNST02cMotaz2FIbWQ4Kbj616RHl3",
  "name": "arns",
  "startTimestamp": 1728067635857,
  "endTimestamp": 1735843635857
}

Was this page helpful?