API Reference
The following sections will provide you a quick and straightforward explanation of the REST NOTO API endpoint with practical and ready-to-use examples.
The API offers the following endpoints:
Since each endpoint has a different scope, the body of the response will change accordingly, what will not change is the structure of each Record returned
The content of the record may vary depending on the domain. The following keys are always returned for each query:
info
records
fullQualifiedDomain
network
provider
ownerAddress
score
spam
{
"info":{
"sld":"example",
"tld":"tld",
"smartContractAddress":"0x0000000000000000000000000000000000000000",
"lastUpdate":"2024-02-02T17:58:39.330Z",
"CSAMValidation":false,
"KYC":false,
"tags":[]
},
"records":{
// if any records exist, will look like this example
"redirect.WEBSITE.0": "https://freename.io",
"profile.OWNER.fullname": "John Doe",
"record.TXT.0": "https://ex.ample/",
"record.A.0": "30.25.212.37"
"token.ETH.0":"0x0000000000000000000000000000000000000000",
...
},
"fullQualifiedDomain":"example.tld",
"network":"POLYGON",
"provider":"FREENAME",
"ownerAddress":"0x0000000000000000000000000000000000000000",
"score":0,
"spam":false
}
Last updated