Generate custom AI remix videos from a Farcaster profile picture and your own prompt.
What it does
RemixMe is a Farcaster-integrated service that generates AI-powered videos using profile pictures. The Custom Remix endpoint at /api/generate/custom accepts a user-supplied prompt along with a Farcaster profile picture and produces a short video. It is one of three tiers offered by RemixMe: Daily Remix (curated daily prompts, $0.50 USDC), Custom Remix (user prompt + profile picture, $1.00 USDC), and Custom Video (user prompt + any image, $1.00 USDC).
The service is designed to work within the Farcaster ecosystem and appears to be a Farcaster Mini App based on its robots.txt references to /.well-known/farcaster.json and manifest.json. Payment is denominated in USDC and the endpoint is listed as an x402 payable resource, though probing did not return a standard 402 challenge (a 405 was returned instead). No OpenAPI schema, documentation pages, or API reference were found — the /docs, /api, /pricing, and /README paths all return 404.
Due to the absence of formal API documentation, request/response schemas, and a working x402 challenge, significant details about required parameters, supported image formats, video output specs, and rate limits remain unknown. Users should expect to experiment or contact the provider for integration guidance.
Capabilities
Use cases
- —Generate personalized short videos from a Farcaster profile picture using a custom text prompt
- —Create social-media-ready AI remix clips for Farcaster posts
- —Automate video content creation for Farcaster-based agents or bots
Fit
Best for
- —Farcaster users wanting quick AI-generated video content
- —Social media agents that create personalized video replies or posts
- —Developers building Farcaster Mini Apps with video features
Not for
- —Production pipelines requiring detailed API contracts and SLAs
- —High-volume batch video generation (no documented rate limits or bulk pricing)
- —Use cases outside the Farcaster ecosystem or not involving profile pictures
Quick start
# No formal API schema is documented. Based on the listing, a plausible call:
curl -X POST https://www.remixme.xyz/api/generate/custom \
-H "Content-Type: application/json" \
-d '{"prompt": "dancing in space", "pfp_url": "https://example.com/pfp.png"}'Endpoint
Quality
No OpenAPI schema, no documentation, no working x402 challenge (returned 405 instead of 402), and all doc/pricing/API pages return 404. The only concrete information comes from the landing page listing three product tiers and their USDC prices. Request/response formats are entirely unknown.
Warnings
- —x402 probe returned HTTP 405 instead of the expected 402 challenge — protocol compliance is uncertain
- —No API documentation exists; /docs returns 404
- —No OpenAPI or schema definition was found
- —Request and response formats are completely undocumented and had to be guessed
- —robots.txt sitemap URL points to 'your-domain.com' — a placeholder, suggesting incomplete deployment
Citations
- —Custom Remix costs $1.00 USDC and uses your prompt with your profile picturehttps://www.remixme.xyz
- —Daily Remix costs $0.50 USDC with curated daily promptshttps://www.remixme.xyz
- —Custom Video costs $1.00 USDC with your prompt and any imagehttps://www.remixme.xyz
- —robots.txt references Farcaster Mini App paths (/.well-known/farcaster.json, /manifest.json)https://www.remixme.xyz
- —x402 probe returned HTTP 405 instead of 402https://www.remixme.xyz/api/generate/custom