Quick code snippet: Fetch public API
fetch('https://xynovaethrix.org/api/endpoint')
.then(r => r.json())
.then(data => console.log(data));
Find SDKs, API docs, tutorials, CLI tools and code snippets.
fetch('https://xynovaethrix.org/api/endpoint')
.then(r => r.json())
.then(data => console.log(data));