Files
2023-06-27 19:02:45 +02:00
..
2023-06-27 19:02:45 +02:00
2023-06-27 19:02:45 +02:00
2023-06-27 18:55:22 +02:00
2023-06-16 22:53:23 +02:00
2023-06-27 18:49:04 +02:00

Official zendo.blog API Client

Install

    npm install @zendoblog/client

Usage example

import { createClient } from "@zendoblog/client";

const cms = createClient({
  privateKey: "MY_PRIVATE_KEY", // Go to your blog settings to get your private key
});

const posts = await cms.getAll();
const post = await cms.getBySlug("blog-slug");