com.atiproto.payment.cart.list

atiproto.com

Documentation

List carts created by the authenticated user.

main query

List carts created by the authenticated user.

Parameters

cursor string Optional

Pagination cursor

limit integer Optional

Results per page (1-100, default: 20)

status string Optional

Filter by cart status

subject string did Optional

Optional: only return carts whose items pay this recipient DID

Output

Encodingapplication/json
carts array Required

No description available.

cursor string Optional

Pagination cursor for next page

Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
Pagination cursor
Results per page (1-100, default: 20)
Filter by cart status
Optional: only return carts whose items pay this recipient DID
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "carts"
      ],
      "properties": {
        "carts": {
          "type": "array",
          "items": {
            "ref": "#cartResponse",
            "type": "ref"
          }
        },
        "cursor": {
          "type": "string",
          "maxLength": 512,
          "description": "Pagination cursor for next page"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "limit": {
        "type": "integer",
        "default": 20,
        "maximum": 100,
        "minimum": 1,
        "description": "Results per page (1-100, default: 20)"
      },
      "cursor": {
        "type": "string",
        "maxLength": 512,
        "description": "Pagination cursor"
      },
      "status": {
        "enum": [
          "open",
          "completed",
          "expired",
          "abandoned"
        ],
        "type": "string",
        "maxLength": 64,
        "description": "Filter by cart status"
      },
      "subject": {
        "type": "string",
        "format": "did",
        "description": "Optional: only return carts whose items pay this recipient DID"
      }
    }
  },
  "description": "List carts created by the authenticated user."
}
cartResponse object

No description available.

Properties

cid string cid Required

CID of the cart record

uri string at-uri Required

AT-URI of the cart record

View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "cid",
    "record"
  ],
  "properties": {
    "cid": {
      "type": "string",
      "format": "cid",
      "description": "CID of the cart record"
    },
    "uri": {
      "type": "string",
      "format": "at-uri",
      "description": "AT-URI of the cart record"
    },
    "record": {
      "ref": "com.atiproto.cart#view",
      "type": "ref"
    }
  }
}

Lexicon Garden

@