# Send Upload Videos🎥, Photos📸 & Text🖊️ to TikTok, Instagram, YouTube, X, LinkedIn, Facebook, Threads, Pinterest, Reddit & Bluesky via Upload-Post API to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "upload-post",
    "name": "Upload Videos🎥, Photos📸 & Text🖊️ to TikTok, Instagram, YouTube, X, LinkedIn, Facebook, Threads, Pinterest, Reddit & Bluesky via Upload-Post API",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/victorcavero14/upload-post",
    "canonicalUrl": "https://clawhub.ai/victorcavero14/upload-post",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/upload-post",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=upload-post",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/requirements.md",
      "references/platforms.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "upload-post",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T11:56:26.301Z",
      "expiresAt": "2026-05-17T11:56:26.301Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=upload-post",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=upload-post",
        "contentDisposition": "attachment; filename=\"upload-post-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "upload-post"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/upload-post"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/upload-post",
    "downloadUrl": "https://openagent3.xyz/downloads/upload-post",
    "agentUrl": "https://openagent3.xyz/skills/upload-post/agent",
    "manifestUrl": "https://openagent3.xyz/skills/upload-post/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/upload-post/agent.md"
  }
}
```
## Documentation

### Upload-Post API

Post content to multiple social media platforms with a single API call.

### Documentation

Full API docs: https://docs.upload-post.com
LLM-friendly: https://docs.upload-post.com/llm.txt

### Setup

Create account at upload-post.com
Connect your social media accounts
Create a Profile (e.g., "mybrand") - this links your connected accounts
Generate an API Key from dashboard
Use the profile name as user parameter in API calls

### Authentication

Authorization: Apikey YOUR_API_KEY

Base URL: https://api.upload-post.com/api

The user parameter in all endpoints refers to your profile name (not username), which determines which connected social accounts receive the content.

### Endpoints Reference

EndpointMethodDescription/upload_videosPOSTUpload videos/upload_photosPOSTUpload photos/carousels/upload_textPOSTText-only posts/upload_documentPOSTUpload documents (LinkedIn only)/uploadposts/status?request_id=XGETCheck async upload status/uploadposts/historyGETUpload history/uploadposts/scheduleGETList scheduled posts/uploadposts/schedule/<job_id>DELETECancel scheduled post/uploadposts/schedule/<job_id>PATCHEdit scheduled post/uploadposts/meGETValidate API key/analytics/<profile>GETGet analytics/uploadposts/facebook/pagesGETList Facebook pages/uploadposts/linkedin/pagesGETList LinkedIn pages/uploadposts/pinterest/boardsGETList Pinterest boards/uploadposts/reddit/detailed-postsGETGet Reddit posts with media/ffmpegPOSTProcess media with FFmpeg

### Upload Videos

curl -X POST "https://api.upload-post.com/api/upload_videos" \\
  -H "Authorization: Apikey YOUR_KEY" \\
  -F "user=profile_name" \\
  -F "platform[]=instagram" \\
  -F "platform[]=tiktok" \\
  -F "video=@video.mp4" \\
  -F "title=My caption"

Key parameters:

user: Profile username (required)
platform[]: Target platforms (required)
video: Video file or URL (required)
title: Caption/title (required)
description: Extended description
scheduled_date: ISO-8601 date for scheduling
timezone: IANA timezone (e.g., "Europe/Madrid")
async_upload: Set true for background processing
first_comment: Auto-post first comment

### Upload Photos

curl -X POST "https://api.upload-post.com/api/upload_photos" \\
  -H "Authorization: Apikey YOUR_KEY" \\
  -F "user=profile_name" \\
  -F "platform[]=instagram" \\
  -F "photos[]=@photo1.jpg" \\
  -F "photos[]=@photo2.jpg" \\
  -F "title=My caption"

Instagram & Threads support mixed carousels (photos + videos in same post).

### Upload Text

curl -X POST "https://api.upload-post.com/api/upload_text" \\
  -H "Authorization: Apikey YOUR_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "user": "profile_name",
    "platform": ["x", "threads", "bluesky"],
    "title": "My text post"
  }'

Supported: X, LinkedIn, Facebook, Threads, Reddit, Bluesky.

### Upload Document (LinkedIn only)

Upload PDFs, PPTs, DOCs as native LinkedIn document posts (carousel viewer).

curl -X POST "https://api.upload-post.com/api/upload_document" \\
  -H "Authorization: Apikey YOUR_KEY" \\
  -F "user=profile_name" \\
  -F 'platform[]=linkedin' \\
  -F "document=@presentation.pdf" \\
  -F "title=Document Title" \\
  -F "description=Post text above document"

Parameters:

document: PDF, PPT, PPTX, DOC, DOCX (max 100MB, 300 pages)
title: Document title (required)
description: Post commentary
visibility: PUBLIC, CONNECTIONS, LOGGED_IN, CONTAINER
target_linkedin_page_id: Post to company page

### Supported Platforms

PlatformVideosPhotosTextDocumentsTikTok✓✓--Instagram✓✓--YouTube✓---LinkedIn✓✓✓✓Facebook✓✓✓-X (Twitter)✓✓✓-Threads✓✓✓-Pinterest✓✓--Reddit-✓✓-Bluesky✓✓✓-

### Upload History

curl "https://api.upload-post.com/api/uploadposts/history?page=1&limit=20" \\
  -H "Authorization: Apikey YOUR_KEY"

Parameters:

page: Page number (default: 1)
limit: 10, 20, 50, or 100 (default: 10)

Returns: upload timestamp, platform, success status, post URLs, errors.

### Scheduling

Add scheduled_date parameter (ISO-8601):

{
  "scheduled_date": "2026-02-01T10:00:00Z",
  "timezone": "Europe/Madrid"
}

Response includes job_id. Manage with:

GET /uploadposts/schedule - List all scheduled
DELETE /uploadposts/schedule/<job_id> - Cancel
PATCH /uploadposts/schedule/<job_id> - Edit (date, title, caption)

### Check Upload Status

For async uploads or scheduled posts:

curl "https://api.upload-post.com/api/uploadposts/status?request_id=XXX" \\
  -H "Authorization: Apikey YOUR_KEY"

Or use job_id for scheduled posts.

### Analytics

curl "https://api.upload-post.com/api/analytics/profile_name?platforms=instagram,tiktok" \\
  -H "Authorization: Apikey YOUR_KEY"

Supported: Instagram, TikTok, LinkedIn, Facebook, X, YouTube, Threads, Pinterest, Reddit, Bluesky.

Returns: followers, impressions, reach, profile views, time-series data.

### Get Pages/Boards

# Facebook Pages
curl "https://api.upload-post.com/api/uploadposts/facebook/pages" \\
  -H "Authorization: Apikey YOUR_KEY"

# LinkedIn Pages  
curl "https://api.upload-post.com/api/uploadposts/linkedin/pages" \\
  -H "Authorization: Apikey YOUR_KEY"

# Pinterest Boards
curl "https://api.upload-post.com/api/uploadposts/pinterest/boards" \\
  -H "Authorization: Apikey YOUR_KEY"

### Reddit Detailed Posts

Get posts with full media info (images, galleries, videos):

curl "https://api.upload-post.com/api/uploadposts/reddit/detailed-posts?profile_username=myprofile" \\
  -H "Authorization: Apikey YOUR_KEY"

Returns up to 2000 posts with media URLs, dimensions, thumbnails.

### FFmpeg Editor

Process media with custom FFmpeg commands:

curl -X POST "https://api.upload-post.com/api/ffmpeg" \\
  -H "Authorization: Apikey YOUR_KEY" \\
  -F "file=@input.mp4" \\
  -F "full_command=ffmpeg -y -i {input} -c:v libx264 -crf 23 {output}" \\
  -F "output_extension=mp4"

Use {input} and {output} placeholders
Poll job status until FINISHED
Download result from /ffmpeg/job/<job_id>/download
Supports multiple inputs: {input0}, {input1}, etc.

Quotas: Free 30min/mo, Basic 300min, Pro 1000min, Advanced 3000min, Business 10000min.

### Platform-Specific Parameters

See references/platforms.md for detailed platform parameters.

### Media Requirements

See references/requirements.md for format specs per platform.

### Error Codes

CodeMeaning400Bad request / missing params401Invalid API key404Resource not found429Rate limit / quota exceeded500Server error

### Notes

Videos auto-switch to async if >59s processing time
X long text creates threads unless x_long_text_as_post=true
Facebook requires Page ID (personal profiles not supported by Meta)
Instagram/Threads support mixed carousels (photos + videos)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: victorcavero14
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-10T11:56:26.301Z
- Expires at: 2026-05-17T11:56:26.301Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/upload-post)
- [Send to Agent page](https://openagent3.xyz/skills/upload-post/agent)
- [JSON manifest](https://openagent3.xyz/skills/upload-post/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/upload-post/agent.md)
- [Download page](https://openagent3.xyz/downloads/upload-post)