ffpipe

Convert any video to a clean, web-ready MP4. Provide a source URL or upload the file directly; the paid request returns a status URL to poll, and the finished MP4 (plus a thumbnail) is downloadable for 24 hours. Fixed price per conversion in USDC over x402; no account or API key. Failures on our side automatically mint a free retry voucher. Input up to 100 MB.

MediaLiveeip155:8453Exactvia cdp
VideoConvertMp4MediaFfmpeg
Calls · 30d
23↑ 17%
This endpoint's own trailing-30-day call count, as published by the upstream catalog and snapshotted daily. 30 snapshots so far.
$1.25
Verified settled volume
36 settlements proven x402 by their on-chain EIP-3009 marker.
$0.020
Listed price
As published in the catalog. Always read the live 402 before paying.
23
Calls · 30d
Upstream's own call count for this endpoint, not ours.
3
Unique payers · 30d
Last called 2026-09-16 09:55Z
Upstream on-chain volume
Reported by the source catalog.
Paid to
0x38c72cAb5d8F053a7CCE4F522b923C3c70291B9d

The wallet the 402 directs payment to. Its whole payment record — every payer, every chain — is on the merchant page.

Asset 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913

Provider

The payTo wallet does not resolve to a registered ERC-8004 agent. That is not a verdict on the service — most of the catalog is unregistered.

Accepts

The payment requirements as published to the catalog. Read the live 402 before paying — a price here is a claim, not a quote.

0.02USDC≈ $0.02 USD
on Base · exact scheme

Pay 0.02 USDC on Base to 0x38c7…91B9d. The signed payment is good for 5 minutes.

USD Coin contract
0x8335…02913
Payment window
5 minutes
As published
20000 smallest units
The catalog’s raw entry
[
  {
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "extra": {
      "name": "USD Coin",
      "version": "2"
    },
    "payTo": "0x38c72cAb5d8F053a7CCE4F522b923C3c70291B9d",
    "amount": "20000",
    "scheme": "exact",
    "network": "eip155:8453",
    "maxTimeoutSeconds": 300
  }
]

Extensions

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "maxWidth": 1280,
          "maxHeight": 720,
          "sourceUrl": "https://storage.example.com/clip.mov?signature=abc123"
        },
        "type": "http",
        "method": "POST",
        "bodyType": "json"
      },
      "output": {
        "type": "json",
        "example": {
          "jobId": "6f1e28d4-3b52-4d0a-9c1f-2ab5cbe2f9c3",
          "status": "queued",
          "statusUrl": "https://ffpipe.example/v1/jobs/6f1e28d4-3b52-4d0a-9c1f-2ab5cbe2f9c3?t=9a1b2c3d4e5f60718293a4b5c6d7e8f9"
        }
      }
    },
    "schema": {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "input"
      ],
      "properties": {
        "input": {
          "type": "object",
          "required": [
            "type",
            "method",
            "bodyType",
            "body"
          ],
          "properties": {
            "body": {
              "oneOf": [
                {
                  "required": [
                    "sourceUrl"
                  ]
                },
                {
                  "required": [
                    "upload"
                  ]
                }
              ],
              "properties": {
                "upload": {
                  "type": "boolean",
                  "const": true,
                  "description": "Push intake: instead of a `sourceUrl`, reserve an upload window and PUT the raw bytes (<= 100 MiB, same cap) to the `uploadUrl` in the 202 before `uploadExpiresAt`. You are charged at the 202, before any bytes move: letting the window expire is a terminal `error` with no refund; a pipeline failure after your upload earns a `retryVoucher`."
                },
                "maxWidth": {
                  "type": "integer",
                  "default": 1920,
                  "maximum": 4096,
                  "minimum": 1,
                  "description": "Max output width. Must be a positive integer (JSON number, not a string)."
                },
                "maxHeight": {
                  "type": "integer",
                  "default": 1080,
                  "maximum": 4096,
                  "minimum": 1,
                  "description": "Max output height."
                },
                "sourceUrl": {
                  "type": "string",
                  "format": "uri",
                  "examples": [
                    "https://storage.example.com/clip.mov?signature=abc123"
                  ],
                  "description": "https URL we fetch the input from. Rejected before any charge if it is not https, is an IP literal, or resolves to a localhost/.internal/.local name; redirects are followed (max 3) and every hop is re-checked. We fetch from datacenter IP ranges - hosts that block datacenter egress will fail with `ingest_failed`, so prefer a presigned URL from storage you control. Body size cap: 100 MiB by default, enforced while streaming."
                }
              },
              "description": "Provide EXACTLY ONE of sourceUrl (we fetch it) or upload: true (you PUT the bytes to the uploadUrl returned in the 202). Unknown properties are ignored; validation runs before any charge.",
              "additionalProperties": true
            },
            "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",
              "required": [
                "jobId",
                "status",
                "statusUrl"
              ],
              "properties": {
                "jobId": {
                  "type": "string",
                  "format": "uuid"
                },
                "status": {
                  "enum": [
                    "queued",
                    "awaiting_upload"
                  ],
                  "type": "string",
                  "description": "`queued` for pull mode; `awaiting_upload` for upload mode (the job queues when your PUT completes)."
                },
                "statusUrl": {
                  "type": "string",
                  "format": "uri",
                  "description": "Free, token-gated status endpoint for this job. Keep it: the token is the only proof of ownership and is not recoverable."
                },
                "uploadUrl": {
                  "type": "string",
                  "format": "uri",
                  "description": "Upload mode only: PUT the raw bytes here before `uploadExpiresAt`. Keep it - this response is the ONLY place the upload token is handed out (the status route never repeats it), and it is not recoverable."
                },
                "fundingSource": {
                  "enum": [
                    "x402",
                    "credits",
                    "voucher"
                  ],
                  "type": "string",
                  "description": "What paid for this acceptance: `x402` (the on-chain payment you signed), `credits` (your account's balance, when you sent a Bearer token) or `voucher` (a free retry). Stated back to you so a caller holding both a token and a wallet never has to guess which one it just spent."
                },
                "uploadExpiresAt": {
                  "type": "string",
                  "format": "date-time",
                  "description": "Upload mode only: deadline for the PUT. Past it the job becomes a terminal `error` with no refund."
                }
              },
              "description": "The 202 acceptance body. Every non-2xx answer is JSON { error: { code, message } } with code one of: invalid_request, invalid_source_url, source_too_large, ingest_failed, pipeline_error, payment_denied, rate_limited, daily_cap_exceeded, not_found, literal_path_template, gone, unknown_job, unauthorized, not_configured, unavailable - and, by the capture rule, a non-2xx response is never charged."
            }
          }
        }
      }
    }
  }
}

Provenance

Seen in the source catalog
2026-09-16 09:55Z
Last indexed by Roundhouse
2026-09-24 12:10Z
Last enriched (probe, favicon, geo)
2026-09-10 04:45Z
x402 version
2
Max timeout
300s
Liveness probe
HTTP 404
Report

Hand this page to an agent

Copy the prompt and paste it into Claude, an MCP client or your own agent — it will vet this service and call it over the free read API. No key, no account.

GET api.roundhouseai.io/v0/endpoints

This endpoint's own trailing-30-day call count, as published by the upstream catalog and snapshotted daily. 30 snapshots so far. Verified volume counts only settlements with an on-chain EIP-3009 marker.

Open skill.md
Show the prompt
Using Roundhouse, look up the x402 service ffpipe and tell me whether it is
worth paying: what a call costs, whether the endpoint answered when last probed, and what
its payment record actually shows.

curl -s 'https://api.roundhouseai.io/v0/endpoints?q=ffpipe'
curl -s 'https://api.roundhouseai.io/v0/merchants/<the payTo wallet returned above>'

Then call it: read the price from the live 402 at https://ffpipe.dev/v1/convert, never from
a cached figure, and pay with an x402 client.

The /v0 API needs an API key (`authorization: Bearer rh_live_…`) on everything except
/v0/unified* and /v0/endpoints. Mint a personal key for $0.01 at GET https://api.roundhouseai.io/v0/test/x402,
or use an organization key from https://roundhouseai.io/dashboard/team.

If you do not have Roundhouse tools or skills installed, read
https://roundhouseai.io/skill.md first — it is the whole procedure.