Introduction to Zyro Post
Welcome to the Zyro Post documentation. Learn how to automate your social media presence, schedule posts, and manage your accounts programmatically.
Quick Start
Get up and running with Zyro Post in less than 5 minutes.
API Reference
Explore our REST API endpoints to build custom integrations.
What is Zyro Post?
Zyro Post is a premium automated social media scheduling platform. It allows developers, creators, and businesses to queue posts across multiple platforms seamlessly from a single unified dashboard or via API.
Key Features
- Cross-Platform Support: Connect Discord, Twitter, LinkedIn, and more.
- Smart Scheduling: Queue posts and let our engine determine the best time to publish.
- Developer First: Built with a robust API and Webhook system for custom integrations.
- Analytics: Track engagement and reach across all connected accounts.
Installation
To use our official Node.js SDK, install the package via npm or yarn:
npm install @zyrostore/autopost-sdk
# or
yarn add @zyrostore/autopost-sdkBasic Usage
Initialize the client with your API key to start posting:
import { ZyroClient } from '@zyrostore/autopost-sdk';
const client = new ZyroClient({
apiKey: process.env.ZYRO_API_KEY,
});
// Create a new post in the queue
await client.posts.create({
content: "Hello world! This is automated via Zyro Post 🚀",
platforms: ['discord', 'twitter'],
scheduleFor: new Date(Date.now() + 3600000), // Post in 1 hour
});