# Stabledesign Canva Designs List

> Stabledesign Canva Designs List is a paid API for AI agents from stabledesign.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Lists all Canva designs belonging to the authenticated user

## Facts

- Endpoint: POST https://stabledesign.vercel.app/api/designs/list
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stabledesign-vercel-app-cf8595e1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kO8cahkje_y09b4Dd4TEI

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 stabledesign-vercel-app-cf8595e1 -d '<json body>'
```

Example prompt: Can you pull up a list of all the designs I have in my Canva account so I can see what I've been working on?

## When to prefer this

Choose this endpoint when you need to enumerate a user's existing Canva designs, such as to let them select one for editing, to audit their design library, or to search for a specific design by name. Prefer this over the brand templates endpoint when looking for user-created designs rather than organizational brand templates.

## Known failure modes

- Missing or invalid authentication credentials — returns authorization error
- User has no designs — returns empty list
- Canva API downstream failure — returns service unavailable error
- Rate limit exceeded — returns too many requests error
- Network timeout reaching Canva API — returns timeout error

## How this service works

List user's Canva designs

## Output

Returns a list of the user's Canva designs, including design metadata such as IDs, names, and potentially thumbnail URLs or creation dates for each design in the account.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "sort_by": {
   "enum": [
    "relevance",
    "modified_descending",
    "modified_ascending",
    "title_descending",
    "title_ascending"
   ],
   "type": "string"
  },
  "ownership": {
   "enum": [
    "owned",
    "shared",
    "any"
   ],
   "type": "string"
  },
  "continuation": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stabledesign-vercel-app-cf8595e1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stabledesign.vercel.app](https://www.zero.xyz/host/stabledesign.vercel.app/llms.txt)
