Generate a daily AI remix video from your Farcaster profile picture for $0.50 USDC.
What it does
RemixMe's Daily Remix endpoint transforms a Farcaster profile picture into an AI-generated video using curated daily prompts. The endpoint is an x402-enabled POST API at /api/generate/daily, meaning callers pay per-request using USDC (priced at $0.50 per generation according to the landing page). The service is part of a broader RemixMe platform that also offers custom prompt and custom video endpoints.
The endpoint returns an HTTP 402 Payment Required challenge when called without payment, confirming it is live and follows the x402 protocol. However, no OpenAPI schema, detailed documentation, or example request/response payloads are publicly available — the /docs, /api, /pricing, and /README paths all return 404. The robots.txt references a Farcaster Mini App integration, suggesting the platform is designed primarily for Farcaster ecosystem users.
Because documentation is absent, the exact request body format (e.g., how the profile picture or Farcaster identity is supplied) and the response structure (e.g., video URL, format, resolution) must be discovered through the x402 challenge metadata or by contacting the provider. Prospective integrators should be aware of this gap.
Capabilities
Use cases
- —Generate a daily AI-remixed video from a Farcaster user's profile picture
- —Automate daily social content creation for Farcaster accounts
- —Build bots or agents that produce shareable AI video clips on a schedule
Fit
Best for
- —Farcaster users wanting daily AI-generated video content
- —Agents automating social media video creation
- —Developers integrating pay-per-use AI video into Farcaster mini apps
Not for
- —High-resolution or long-form video production
- —Use cases requiring detailed API documentation or SLAs
- —Non-USDC payment workflows
Quick start
curl -X POST https://www.remixme.xyz/api/generate/daily \
-H "Content-Type: application/json" \
-H "X-Payment: <x402-payment-header>" \
-d '{"pfpUrl": "https://example.com/avatar.png"}'Example
Request
{
"pfpUrl": "https://example.com/avatar.png"
}Endpoint
Quality
The endpoint is confirmed live (402 challenge captured) and the landing page provides pricing and a brief description, but there is no API documentation, no OpenAPI schema, no example responses, and the x402 challenge body is empty. Request/response formats are entirely inferred.
Warnings
- —No API documentation available — /docs returns 404
- —x402 challenge body is empty, providing no schema or payment details
- —Request and response formats are inferred and unverified
- —robots.txt sitemap URL points to a placeholder domain (your-domain.com)
Citations
- —Daily Remix costs $0.50 USDC per generationhttps://www.remixme.xyz
- —The service transforms Farcaster profile pictures into videos with curated daily promptshttps://www.remixme.xyz
- —The endpoint returns HTTP 402 on POST, confirming x402 livenesshttps://www.remixme.xyz/api/generate/daily
- —Custom Remix and Custom Video endpoints are also offered at $1.00 USDChttps://www.remixme.xyz