/domains/{domain}
This GET route returns nameserver data for a single domain.
Request
Parameters
Examples
curl --location 'https://dappling.network/api/v1/domains/dappling.fi' \
--header 'Authorization: {DAPPLING_AUTH_TOKEN}'const myHeaders = new Headers();
myHeaders.append("Authorization", {DAPPLING_AUTH_TOKEN});
const requestOptions = {
method: "GET",
headers: myHeaders,
};
fetch("https://dappling.network/api/v1/domains/dappling.fi", requestOptions)
.then((response) => response.json())
.then((result) => console.log(result))
.catch((error) => console.error(error));Response
Structure
Example
Errors
Last updated