Website: https://nabicloud.ir
NabiCloud is a Backend-as-a-Service (BaaS) platform that lets you build powerful, dynamic applications without creating or maintaining your own backend infrastructure.
With NabiCloud, you can manage your data, connect through APIs, and store files easily.
Start building with NabiCloud using the trial version:
- No backend setup required
- Create dynamic applications quickly
- Manage data through APIs
- Store and organize files
- Connect any frontend technology
const apiToken = "{your api token}";
fetch(`https://nabicloud.ir/api/${apiToken}/collections`, {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
query: JSON.stringify({
collections: {
posts: {
select: [
"id",
"title",
"thumbnail"
],
relations: [
"author",
"categories"
],
per_page: 10
}
}
})
})
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error));