# CueFrame Projects List API

> CueFrame Projects List API 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 projects for the authenticated user from the CueFrame platform

## Facts

- Endpoint: GET https://api.cueframe.ai/v1/projects
- 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-projects-list-api-9d24472c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MfAl2AgKtTr-wUp46KcR2

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-projects-list-api-9d24472c
```

Example prompt: Show me all the projects I have access to on CueFrame right now.

## When to prefer this

Use this endpoint when you need to enumerate or discover projects available within a CueFrame account, especially as a first step before operating on a specific project. It is the canonical way to get project IDs needed for subsequent CueFrame API calls. Prefer this over any caching or local state when you need a fresh, authoritative project list.

## Known failure modes

- 401 Unauthorized if authentication token is missing or invalid
- 403 Forbidden if the caller lacks the projects:read permission
- 404 Not Found if the endpoint path is incorrect
- 429 Too Many Requests if rate limits are exceeded
- 402 Payment Required if insufficient USDC balance for the $0.01 per call fee
- 500 Internal Server Error if the CueFrame backend is unavailable

## How this service works

List projects

## Output

A list of CueFrame projects the authenticated user has read access to, including project metadata such as project IDs, names, and associated details for each project in the account.

## 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-projects-list-api-9d24472c/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)
