$0.01
per call · USD Coin on Base
List projects
Endpoint
GET https://api.cueframe.ai/v1/projects1
Calls / 30d
1
Unique payers / 30d
Aug 27
Last called
exact
Payment scheme
Call this service
import { wrapFetchWithPayment } from "@x402/fetch";
import { privateKeyToAccount } from "viem/accounts";
const account = privateKeyToAccount(process.env.PRIVATE_KEY);
const fetchWithPay = wrapFetchWithPayment(fetch, account);
const res = await fetchWithPay("https://api.cueframe.ai/v1/projects", {
method: "GET",
});
const data = await res.json();curl -X GET \
"https://api.cueframe.ai/v1/projects" \
-H "X-PAYMENT: <signed x402 payment>"Example response
{
"data": [
{
"activeCompositionId": "string",
"brandKitId": "string",
"composition": {},
"createdAt": "string",
"description": "string",
"format": {},
"id": "string",
"lastRender": {},
"name": "string"
}
],
"pagination": {
"hasMore": true,
"nextCursor": "string",
"prevCursor": "string"
}
}Payment details
0xa82c8b6971a7379badb2fb96032d82af46eccc0aUSD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913Is this your API?
Pin it to the top of Other and the homepage with a featured placement.
More from CueFrame & similar services
CueFrame · Media Import
api.cueframe.ai
Import media into the project from a public https URL — the server fetches and mirrors the bytes (SSRF-filtered), then processes it (transcode + transcribe). Async: returns a media id that flips to ready when the mirror and processing finish; poll GET /media/:id or use a media.completed webhook.
CueFrame · Composition Validate
api.cueframe.ai
Validate a composition body without saving it (dry-run)
CueFrame · Projects
api-dev.cueframe.ai
Create a video project — the container for a composition (the editable timeline), its media, brand kit, and renders. Every other authoring call (import or generate media, apply composition ops, compose, render, export) takes this project's id. Set the output format here (aspectRatio, fps, resolution).