Open with AI
List renders
const url = 'https://proficient-seahorse-829.eu-west-1.convex.site/v1/renders?limit=20&project_id=proj_j123456789&search=welcome&status=initializing&order=asc';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://proficient-seahorse-829.eu-west-1.convex.site/v1/renders?limit=20&project_id=proj_j123456789&search=welcome&status=initializing&order=asc' \ --header 'Authorization: Bearer <token>'Lists the renders of one project, newest first.
Authorizations
Section titled “Authorizations”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters”How many to return. 1–60, 20 by default.
Example
20How many to return. 1–60, 20 by default.
The next_cursor of the previous page. Omit for the first page.
The next_cursor of the previous page. Omit for the first page.
Project ID
Example
proj_j123456789Project ID
Filter by name. Matches are returned by relevance rather than by date.
Example
welcomeFilter by name. Matches are returned by relevance rather than by date.
Return only renders with this status.
Example
completeReturn only renders with this status.
Oldest or newest first. Newest by default, and ignored when search is set.
Example
descOldest or newest first. Newest by default, and ignored when search is set.
Responses
Section titled “ Responses ”A page of renders
object
object
object
Signed URLs for the finished video, keyed by variant (the master plus any smaller encodes). Present once the render is complete. The URLs are time-limited.
object
Whether another page follows.
Pass as cursor to read the next page. Null on the last page.
Example
{ "data": [ { "id": "rend_jh716ctpaqbye9aw64tgkqwtks7gvx7g", "name": "My New Shiny Render", "status": "initializing", "type": "local", "project": { "id": "proj_jd71dcg41pjy7rax1v2h4pvcmd7gtar9", "team": "team_jn7fw41m8n5jtht7hxsy69tzg97gvef8" }, "output": { "master": "https://files.editsquare.com/renders/rend_jh716ctpaqbye9aw64tgkqwtks7gvx7g/master.mp4?signature=..." }, "created_by": "user_k970b359khfwwny0q8fjah1hc97gtcwm", "created_at": 1748875980, "updated_at": 1748875986 } ], "has_more": false}