# Cueframe List Renders for Project

> Cueframe List Renders for Project is a paid API for AI agents from api.cueframe.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Retrieves a list of all renders associated with a specific project in Cueframe

## Facts

- Endpoint: GET https://api.cueframe.ai/v1/projects/%7Bid%7D/renders
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cueframe-list-renders-for-project-d7857175
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LneAzHL0c3KfvY0ZLaMwD

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability cueframe-list-renders-for-project-d7857175
```

Example prompt: Can you pull up all the renders for my Cueframe project with ID abc123 so I can see what's been generated?

## When to prefer this

Use this endpoint when you need to enumerate or audit all render jobs tied to a specific Cueframe project. Prefer this over fetching individual renders by ID when the full list of renders is needed for a project, or when monitoring pipeline progress.

## Known failure modes

- Project ID not found — 404 Not Found
- Unauthorized or missing credentials — 401 Unauthorized
- Invalid project ID format — 400 Bad Request
- No renders exist for project — empty list returned
- Service unavailable — 503 error

## How this service works

List renders for a project

## Output

A list of render records associated with the specified project, including render metadata such as IDs, statuses, and related media details.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cueframe-list-renders-for-project-d7857175/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.cueframe.ai](https://www.zero.xyz/host/api.cueframe.ai/llms.txt)
