late-api

Verified·Scanned 2/18/2026

This skill is an API reference for the Late social media scheduling service and provides example requests to https://getlate.dev/api/v1 for posts, webhooks, media, and auth. It includes networked curl/fetch examples and references the environment variable process.env.LATE_API_KEY for API key usage.

from clawhub.ai·v0621e8c·31.9 KB·0 installs
Scanned from 0.1.0 at 0621e8c · Transparency log ↗
$ vett add clawhub.ai/mikipalet/late-api

Late API Skill

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

Installation

npx skills add mikipalet/skills/late-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 13 platforms
  • Webhooks - Setup and signature verification
  • Error Handling - Common errors and solutions
  • Code Examples - curl, TypeScript, Python

13 Platforms Supported

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

Usage

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

/late-api

Example Prompts

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

Quick Example

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

Resources

License

MIT


Late - Social Media Scheduling API for Developers