List carts whose items pay the authenticated user — i.e. carts targeting this user as a payment recipient. Read-only, no PDS writes.
Parameters
Output
Encoding
application/jsoncarts
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.
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"
},
"sender": {
"type": "string",
"format": "did",
"description": "Optional: only return carts created by this sender DID"
},
"status": {
"enum": [
"open",
"completed",
"expired",
"abandoned"
],
"type": "string",
"maxLength": 64,
"description": "Filter by cart status"
}
}
},
"description": "List carts whose items pay the authenticated user — i.e. carts targeting this user as a payment recipient. Read-only, no PDS writes."
}