Getting Started

Introduction

Welcome to the AdaptlyPost API documentation

Base URL

All API requests are made to https://api.adaptlypost.com/api/v1

What is AdaptlyPost?

AdaptlyPost is a social media management platform that lets you schedule and publish content across multiple platforms from a single API. Manage your social presence programmatically with full control over posting, scheduling, and media uploads.

  • Schedule and publish to 9 social platforms
  • Upload images and videos with presigned URLs
  • Bulk schedule up to 100 posts at once
  • Platform-specific configurations for each network
  • Real-time status tracking and retry for failed posts

Quick Example

Create a post
curl -X POST https://api.adaptlypost.com/api/v1/social-posts \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "platforms": ["TWITTER", "LINKEDIN"],
    "contentType": "TEXT",
    "text": "Hello from AdaptlyPost!",
    "timezone": "America/New_York"
  }'

Next Steps