API Reference

Posts API

Reference cho Posts endpoints.

Posts

Create và manage posts.

Create Post

ts
const post = await devkit.posts.create({
  title: 'Hello World',
  body: 'My first post',
  authorId: 'usr_1',
});

List Posts

ts
const { data } = await devkit.posts.list({ limit: 20 });

Publish Post

ts
await devkit.posts.publish('post_xyz');