app.didpic.admin.listUsers

lexicons.didpic.app

Documentation

List indexed actors, newest first.

main query

List indexed actors, newest first.

Parameters

cursor string Optional

No description available.

limit integer Optional

No description available.

Output

Encodingapplication/json
cursor string Optional

No description available.

users 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
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "users"
      ],
      "properties": {
        "users": {
          "type": "array",
          "items": {
            "ref": "#user",
            "type": "ref"
          }
        },
        "cursor": {
          "type": "string"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 200,
        "minimum": 1
      },
      "cursor": {
        "type": "string"
      }
    }
  },
  "description": "List indexed actors, newest first."
}
user object

No description available.

Properties

accessStatus string Required

No description available.

avatarCid string Optional

No description available.

did string did Required

A decentralized identifier (DID).

displayName string Optional

No description available.

firstSeenAt string datetime Required

An RFC 3339 formatted timestamp.

handle string Optional

No description available.

indexedAt string datetime Required

An RFC 3339 formatted timestamp.

postCount integer Required

No description available.

takedown boolean Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "did",
    "accessStatus",
    "takedown",
    "firstSeenAt",
    "indexedAt",
    "postCount"
  ],
  "properties": {
    "did": {
      "type": "string",
      "format": "did"
    },
    "handle": {
      "type": "string"
    },
    "takedown": {
      "type": "boolean"
    },
    "avatarCid": {
      "type": "string"
    },
    "indexedAt": {
      "type": "string",
      "format": "datetime"
    },
    "postCount": {
      "type": "integer"
    },
    "displayName": {
      "type": "string"
    },
    "firstSeenAt": {
      "type": "string",
      "format": "datetime"
    },
    "accessStatus": {
      "type": "string"
    }
  }
}

Lexicon Garden

@