rip.pds.account.listAccounts

pds.rip

Documentation

List the ephemeral accounts minted by the calling account.

main query

List the ephemeral accounts minted by the calling account.

Parameters

cursor string Optional

No description available.

includeDeleted boolean Optional

Include accounts that have already expired or been deleted.

limit integer Optional

No description available.

Output

Encodingapplication/json
accounts array Required

No description available.

cursor string Optional

No description available.

maxLifetimeDays integer Optional

How far any of the caller's accounts may be extended, in days from its creation, after any per-person override. Clients should render ceilings from this rather than from a server-wide default.

quota object Optional

How much of the caller's allowance is in use.

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
Include accounts that have already expired or been deleted.
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "accounts"
      ],
      "properties": {
        "quota": {
          "type": "object",
          "required": [
            "used",
            "limit"
          ],
          "properties": {
            "used": {
              "type": "integer"
            },
            "limit": {
              "type": "integer"
            }
          },
          "description": "How much of the caller's allowance is in use."
        },
        "cursor": {
          "type": "string"
        },
        "accounts": {
          "type": "array",
          "items": {
            "ref": "rip.pds.account.defs#accountView",
            "type": "ref"
          }
        },
        "maxLifetimeDays": {
          "type": "integer",
          "description": "How far any of the caller's accounts may be extended, in days from its creation, after any per-person override. Clients should render ceilings from this rather than from a server-wide default."
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1
      },
      "cursor": {
        "type": "string"
      },
      "includeDeleted": {
        "type": "boolean",
        "default": false,
        "description": "Include accounts that have already expired or been deleted."
      }
    }
  },
  "description": "List the ephemeral accounts minted by the calling account."
}

Lexicon Garden

@