/ethereals/:address
You need an API key for this call. Please reach out to the Blessnet team to get setup.
GET
/ethereals/:address
The /etherals:/address
endpoint returns details of a specific ethereal account.
Headers
x-api-key
Your API key
Path Variables
:address
Yes
The ethereal address you are querying
Params
chain
No
mainnet
The chain type we are working with, either mainnet
or sepolia
Response Body
The response provides an array of etherealData
objects with a single nextCursor
value providing the cursor for the next page. If this is null there is no next page.
The etherealData
objects have the following properties:
_id
string
The unique Id for this transfer
ethereal
string
The contract address of the ethereal collection.
status
string
The status of the ethereal. Possible values are: - active - unfunded (funds are below the level required for synchronisation.
balance
string
The balance of the ethereal contract.
sourceChain
string
The source chain for the contract being mirrored..
sourceContract
string
The source contract being mirrored.
tokenName
string
The name of the ethereal contract.
tokenSymbol
string
The symbol of the ethereal contract.
lastCheckedTimestamp
number
Unix timestamp of when this was last checked.
lastCheckedDate
string
Date object of when this was last checked.
lastSyncTimestamp
number
Unix timestamp of when this was last synced.
lastSyncData
string
Date object of when this was last synced.
deposits
array
Array of objects detailing the ethereal's deposit history.
Example Request
Response
Last updated