Skip to content

zernio-dev/zernio-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

Zernio

Zernio API Skill

ClawHub License

Official Claude Code skill for the Zernio Social Media Scheduling API.

Installation

npx clawhub@latest install zernio-api

What's Included

  • Authentication - API key setup and usage
  • Quick Start - Get posting in 4 steps
  • All Endpoints - Posts, accounts, profiles, webhooks, media
  • Platform-Specific - Features for all 14 platforms
  • Webhooks - Setup and signature verification
  • Error Handling - Common errors and solutions
  • Code Examples - curl, TypeScript, Python

14 Platforms Supported

Twitter/X, Instagram, Facebook, LinkedIn, TikTok, YouTube, Pinterest, Reddit, Bluesky, Threads, Google Business, Telegram, WhatsApp, Snapchat

Usage

Once installed, Claude Code will help you with Zernio API integration:

/zernio-api

Example Prompts

  • "How do I create a post with the Zernio API?"
  • "Show me how to set up webhooks"
  • "What's the endpoint for connecting a Twitter account?"
  • "How do I upload media to Zernio?"

Quick Example

const response = await fetch('https://zernio.com/api/v1/posts', {
  method: 'POST',
  headers: {
    'Authorization': `Bearer ${process.env.ZERNIO_API_KEY}`,
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    content: 'Hello from Zernio API!',
    platforms: [{ platform: 'twitter', accountId: 'acc_123' }],
    publishNow: true
  })
});

Resources

License

MIT


Zernio - Social Media Scheduling API for Developers

About

Claude Code skill for the Zernio Social Media Scheduling API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors