getArNSReservedName

getArNSReservedName is a method on the ARIO class that retrieves details about a specific reserved ArNS name, including its target and any expiration information.

getArNSReservedName does not require authentication.

Examples

getArNSReservedName

const reservedName = await ario.getArNSReservedName({ name: 'arweave' });

Parameters

ParameterTypeDescriptionOptional
namestring

The reserved ArNS name to retrieve information for

false

Output

{
  "target": "some-protected-target-id",
  "endTimestamp": null // null indicates permanent reservation
}

Was this page helpful?