# Dropspace Multi-Platform Social Media Launch Scheduler

> Dropspace Multi-Platform Social Media Launch Scheduler is a paid API for AI agents from www.dropspace.dev, paid per call via x402, $0.55/call, status unknown (last checked 2026-09-14).

Schedules and publishes AI-generated or custom content across up to 10 social media platforms simultaneously for a product or brand launch

## Facts

- Endpoint: POST https://www.dropspace.dev/api/v1/launches
- Price: $0.55/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 3
- Tags: x402
- Canonical page: https://www.zero.xyz/c/www-dropspace-dev-44f7a768
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CvvypyWlHKBEY3l1WtWWe

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability www-dropspace-dev-44f7a768 -d '<json body>'
```

Example prompt: Schedule a multi-platform launch for my new productivity app 'FocusFlow' this Friday at 9am EST across Twitter, LinkedIn, Reddit, Product Hunt, and Hacker News — generate platform-appropriate content for each one based on the tagline 'Deep work, effortlessly.'

## When to prefer this

Choose this endpoint when you need to coordinate a simultaneous, multi-platform social media launch with platform-native content — especially when you want AI to write tailored posts for each platform's tone and format (e.g. thread for Twitter, professional tone for LinkedIn, community-style for Reddit/HN). Prefer this over single-platform schedulers when launching a product, feature, or brand announcement that needs broad reach across 3+ platforms at once.

## Known failure modes

- Invalid or unsupported platform specified — returns 400 with list of valid platforms
- Missing required launch description or product details — returns 400 validation error
- Scheduled time is in the past — returns 422 unprocessable entity
- Payment of 0.55 USDC not received or rejected — returns 402 payment required
- Platform authentication credentials missing or expired — returns 401 for affected platforms
- Rate limits exceeded on target social platforms — returns 429 with retry-after

## How this service works

Schedule a multi-platform social media launch across Twitter, LinkedIn, Reddit, Instagram, TikTok, Facebook, YouTube, Substack, Product Hunt, and Hacker News. Generates AI-written content per platform or accepts custom content.

## Output

Returns a launch confirmation with a launch ID, the AI-generated or accepted custom content per platform, scheduled posting times, and the status of each platform's scheduled post

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "title": {
       "type": "string"
      },
      "platforms": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "persona_id": {
       "type": "string"
      },
      "product_url": {
       "type": "string"
      },
      "custom_content": {
       "type": "string"
      },
      "scheduled_date": {
       "type": "string"
      },
      "product_description": {
       "type": "string"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "id": {
       "type": "string"
      },
      "name": {
       "type": "string"
      },
      "status": {
       "type": "string"
      },
      "platforms": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "created_at": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/www-dropspace-dev-44f7a768/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.dropspace.dev](https://www.zero.xyz/host/www.dropspace.dev/llms.txt)
