Generate custom AI videos from any image using a text prompt, paid per-request via x402.
What it does
RemixMe Custom Video is an x402-enabled API endpoint that generates AI videos from any user-supplied image combined with a custom text prompt. It is part of the RemixMe platform, which also offers daily remix and custom remix options tied to Farcaster profile pictures. This endpoint specifically allows callers to provide both a prompt and an arbitrary image, rather than being limited to a Farcaster profile picture.
The endpoint is live and responds with an HTTP 402 payment challenge on POST requests, consistent with the x402 protocol. Payment is denominated in USDC, with the landing page listing the Custom Video tier at $1.00 USDC per generation. No OpenAPI schema, detailed API documentation, or example request/response payloads were found during crawling — the /docs, /api, and /pricing paths all return 404. The robots.txt references a Farcaster Mini App integration, suggesting the platform is designed primarily for the Farcaster social ecosystem.
Due to the absence of formal API documentation, request and response schemas must be inferred. Callers should expect to POST with at minimum a prompt string and an image (likely as a URL or base64-encoded payload). The exact response format — whether it returns a video URL, a job ID for polling, or streams the video directly — is unknown from available materials.
Capabilities
Use cases
- —Generate short AI videos from any uploaded image with a custom text prompt
- —Create personalized video content for social media posts on Farcaster
- —Automate video creation in agent workflows that can pay per-request via x402
Fit
Best for
- —Developers building Farcaster Mini Apps that need video generation
- —AI agents with x402 payment capability needing image-to-video conversion
- —Creative applications that transform static images into animated video clips
Not for
- —Production pipelines requiring detailed API documentation and SLAs
- —Use cases needing free or high-volume batch video generation
- —Applications that require deterministic or frame-precise video output
Quick start
curl -X POST https://www.remixme.xyz/api/generate/custom-video \
-H "Content-Type: application/json" \
-d '{"prompt": "A cat flying through space", "image": "https://example.com/cat.png"}'Example
Request
{
"image": "https://example.com/cat.png",
"prompt": "A cat flying through space"
}Endpoint
Quality
The endpoint is live (402 challenge confirmed) and the landing page provides basic pricing and feature descriptions, but there is no API documentation, no OpenAPI schema, no example responses, and the request format is entirely inferred. This is effectively a stub listing.
Warnings
- —No API documentation found — /docs returns 404
- —Request and response schemas are entirely inferred; actual field names and formats are unknown
- —No OpenAPI or machine-readable schema available
- —robots.txt references a placeholder domain (your-domain.com) in the sitemap, suggesting incomplete deployment
Citations
- —Custom Video tier is listed at $1.00 USDC per generationhttps://www.remixme.xyz
- —The endpoint returns HTTP 402 on POST, confirming x402 livenesshttps://www.remixme.xyz/api/generate/custom-video
- —The platform integrates with Farcaster (Mini App references in robots.txt)https://www.remixme.xyz
- —/docs, /api, /pricing all return 404https://www.remixme.xyz/docs