Authentication
You need to authenticate every request to the NOTO API using your API Key (find out how to create an API key).
The API key should be passed in the Header of the request, using the key:api-key
Here you can see a example in Bash:
# CHANGE ME
url="https://engine.noto.network/noto/api/v1/resolve?fullQualifiedDomain=example.tld"
# CHANGE ME
api_key="your_api_key"
curl -X GET -H "api-key: $api_key" $urlHere you can see additional examples in the following languages:
Last updated