Upload-Post

Upload-Post is a universal social media publishing API that lets developers publish videos, photos, and text posts to TikTok, Instagram, YouTube, LinkedIn, Facebook, X (Twitter), Threads, Pinterest, Bluesky, Reddit, Discord, Telegram, and Google Business Profile through a single REST interface, with managed user profiles, OAuth account linking, scheduling, and cross-platform analytics.

5 APIs 0 Features
Social MediaPublishingVideoContentCross Posting

APIs

Upload-Post Upload Video API

Publishes video posts to TikTok, Instagram, YouTube, LinkedIn, Facebook, X (Twitter), Threads, Pinterest, Bluesky, Reddit, Discord, and Telegram via a single multipart upload, w...

Upload-Post Upload Photos API

Publishes single photos and image carousels to Instagram, LinkedIn, Facebook, X (Twitter), TikTok, Threads, Pinterest, and Bluesky using multipart photos[] uploads with title an...

Upload-Post Upload Text API

Creates and distributes text-only posts across supported social platforms such as X (Twitter), Threads, LinkedIn, Facebook, and Bluesky.

Upload-Post Profiles and Users API

Creates, lists, and deletes managed user profiles, generates single-use JWT URLs for end users to link their own social accounts, and validates those tokens.

Upload-Post Analytics API

Retrieves per-profile performance metrics, aggregated total impressions across platforms, and per-post analytics by request_id or platform post ID.

Collections

Pricing Plans

Rate Limits

Upload Post Rate Limits

4 limits

RATE LIMITS

FinOps

Resources

👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Upload-Post API
  version: '1.0'
request:
  auth:
    type: apikey
    key: Authorization
    value: Apikey {{apiKey}}
    in: header
items:
- info:
    name: Upload
    type: folder
  items:
  - info:
      name: Upload a video post
      type: http
    http:
      method: POST
      url: https://api.upload-post.com/api/upload
      body:
        type: multipart-form
        data: []
    docs: Publishes a video to one or more platforms via multipart/form-data (user, platform[], title, video).
  - info:
      name: Upload photos or carousel
      type: http
    http:
      method: POST
      url: https://api.upload-post.com/api/upload_photos
      body:
        type: multipart-form
        data: []
    docs: Publishes photos or an image carousel via multipart/form-data (user, platform[], title, description, photos[]).
  - info:
      name: Create a text post
      type: http
    http:
      method: POST
      url: https://api.upload-post.com/api/upload_text
      body:
        type: multipart-form
        data: []
    docs: Creates a text-only post across supported platforms (user, platform[], title).
- info:
    name: Upload Management
    type: folder
  items:
  - info:
      name: Get upload/job status
      type: http
    http:
      method: GET
      url: https://api.upload-post.com/api/uploadposts/status
    docs: Returns status by request_id (async upload) or job_id (scheduled post).
  - info:
      name: List upload history
      type: http
    http:
      method: GET
      url: https://api.upload-post.com/api/uploadposts/history
    docs: Paginated, filterable upload history.
- info:
    name: Users
    type: folder
  items:
  - info:
      name: List user profiles
      type: http
    http:
      method: GET
      url: https://api.upload-post.com/api/uploadposts/users
    docs: Retrieves all user profiles under the API key.
  - info:
      name: Create a user profile
      type: http
    http:
      method: POST
      url: https://api.upload-post.com/api/uploadposts/users
      body:
        type: json
        data: "{\n  \"username\": \"test\"\n}"
    docs: Creates a new profile identified by a unique username.
  - info:
      name: Delete a user profile
      type: http
    http:
      method: DELETE
      url: https://api.upload-post.com/api/uploadposts/users
      body:
        type: json
        data: "{\n  \"username\": \"test\"\n}"
    docs: Removes a profile and its social connections.
  - info:
      name: Get a user profile
      type: http
    http:
      method: GET
      url: https://api.upload-post.com/api/uploadposts/users/{username}
    docs: Fetches a single profile by username.
  - info:
      name: Generate JWT linking URL
      type: http
    http:
      method: POST
      url: https://api.upload-post.com/api/uploadposts/users/generate-jwt
      body:
        type: json
        data: "{\n  \"username\": \"test\",\n  \"redirect_url\": \"https://example.com/done\"\n}"
    docs: Creates a single-use URL for an end user to link their social accounts.
  - info:
      name: Validate JWT token
      type: http
    http:
      method: POST
      url: https://api.upload-post.com/api/uploadposts/users/validate-jwt
    docs: Validates a JWT token passed in the Authorization header.
  - info:
      name: Validate API key (me)
      type: http
    http:
      method: GET
      url: https://api.upload-post.com/api/uploadposts/me
    docs: Validates the API key and returns account info.
- info:
    name: Analytics
    type: folder
  items:
  - info:
      name: Get profile metrics
      type: http
    http:
      method: GET
      url: https://api.upload-post.com/api/analytics/{profile_username}
    docs: Retrieves performance metrics for a profile.
  - info:
      name: Get total impressions
      type: http
    http:
      method: GET
      url: https://api.upload-post.com/api/uploadposts/total-impressions/{profile_username}
    docs: Aggregated impressions across platforms for a profile.
  - info:
      name: Get post analytics
      type: http
    http:
      method: GET
      url: https://api.upload-post.com/api/uploadposts/post-analytics/{request_id}
    docs: Per-post analytics by request_id (or platform_post_id query param).