Content
Create and manage community posts and content.
/api/postsGet community posts with pagination
/api/postsCreate a new community post
Create Post Example
const response = await fetch('https://aethex.dev/api/posts', { method: 'POST', headers: { 'Authorization': 'Bearer aethex_sk_your_api_key_here', 'Content-Type': 'application/json' }, body: JSON.stringify({ author_id: 'user_uuid_here', title: 'My New Post', content: 'This is the post content...', category: 'general', tags: ['tutorial', 'beginners'], is_published: true })}); const post = await response.json();console.log('Post created:', post.id);/api/community/posts/:id/likeLike a community post
/api/community/posts/:id/commentsComment on a post