com.atiproto.recipient.payment.item.list

atiproto.com

Documentation

List items received by the authenticated user (items where the authed user is the recipient/subject). Includes items marked private, which are only stored in atiproto's database.

main query

List items received by the authenticated user (items where the authed user is the recipient/subject). Includes items marked private, which are only stored in atiproto's database.

Parameters

cursor string Optional

Pagination cursor

limit integer Optional

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

recordUri string at-uri Optional

Optional: only return items received for this specific record

sender string did Optional

Optional: only return items sent by this DID

Output

Encodingapplication/json
cursor string Optional

Pagination cursor for next page

items array Required

No description available.

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: 50)
Optional: only return items received for this specific record
Optional: only return items sent by this DID
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "items"
      ],
      "properties": {
        "items": {
          "type": "array",
          "items": {
            "ref": "com.atiproto.item#view",
            "type": "ref"
          }
        },
        "cursor": {
          "type": "string",
          "maxLength": 512,
          "description": "Pagination cursor for next page"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1,
        "description": "Results per page (1-100, default: 50)"
      },
      "cursor": {
        "type": "string",
        "maxLength": 512,
        "description": "Pagination cursor"
      },
      "sender": {
        "type": "string",
        "format": "did",
        "description": "Optional: only return items sent by this DID"
      },
      "recordUri": {
        "type": "string",
        "format": "at-uri",
        "description": "Optional: only return items received for this specific record"
      }
    }
  },
  "description": "List items received by the authenticated user (items where the authed user is the recipient/subject). Includes items marked private, which are only stored in atiproto's database."
}

Lexicon Garden

@