https://api.exoapi.dev/datastore// npm install @flower-digital/exoapi-sdk
import { ExoAPI } from "@flower-digital/exoapi-sdk";
const exoapi = new ExoAPI({ apiKey: YOUR_API_KEY });
async function datastore() {
try {
const res = await exoapi.datastore({
key: "config.keywords",
data: ["example", "of", "data"],
});
console.log(res);
} catch (err) {
console.error(err);
}
}
datastore();{
"key": "config.keywords",
"data": [
"example",
"of",
"data"
],
"createdAt": "2025-10-30T19:03:47.809Z",
"updatedAt": "2025-10-30T19:03:47.809Z"
}