API endpoint:
https://rlnk.xyz/api/v1/domains
Request example:
curl --location --request GET 'https://rlnk.xyz/api/v1/domains' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
search
search_by
name
for Name. Defaults to: name
.sort_by
id
for Date created, name
for Name. Defaults to: id
.sort
desc
for Descending, asc
for Ascending. Defaults to: desc
.per_page
10
, 25
, 50
, 100
. Defaults to: 10
.API endpoint:
https://rlnk.xyz/api/v1/domains/{id}
Request example:
curl --location --request GET 'https://rlnk.xyz/api/v1/domains/{id}' \ --header 'Accept: application/json' \ --header 'Authorization: Bearer {api_key}'
API endpoint:
https://rlnk.xyz/api/v1/domains
Request example:
curl --location --request POST 'https://rlnk.xyz/api/v1/domains' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'Authorization: Bearer {api_key}' \ --data-urlencode 'name={name}'
name
index_page
not_found_page
API endpoint:
https://rlnk.xyz/api/v1/domains/{id}
Request example:
curl --location --request PUT 'https://rlnk.xyz/api/v1/domains/{id}' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'Authorization: Bearer {api_key}'
index_page
not_found_page
API endpoint:
https://rlnk.xyz/api/v1/domains/{id}
Request example:
curl --location --request DELETE 'https://rlnk.xyz/api/v1/domains/{id}' \ --header 'Authorization: Bearer {api_key}'