app.standard-reader.getAuthor

standard-reader.app

Documentation

Author profile for a DID with aggregate stats and a first page of their publications.

main query

Author profile for a DID with aggregate stats and a first page of their publications.

Parameters

did string did Required

A decentralized identifier (DID).

Output

Encodingapplication/json
publications array Required

The author's publications, owned first then featured, newest activity first. A convenience first page; use getAuthorPublications to page through the full set.

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
A decentralized identifier (DID).
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "profile",
        "stats",
        "publications"
      ],
      "properties": {
        "stats": {
          "ref": "app.standard-reader.getAuthor#stats",
          "type": "ref"
        },
        "profile": {
          "ref": "app.standard-reader.defs#profileView",
          "type": "ref"
        },
        "publications": {
          "type": "array",
          "items": {
            "ref": "app.standard-reader.defs#publicationView",
            "type": "ref"
          },
          "description": "The author's publications, owned first then featured, newest activity first. A convenience first page; use getAuthorPublications to page through the full set."
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "did"
    ],
    "properties": {
      "did": {
        "type": "string",
        "format": "did"
      }
    }
  },
  "description": "Author profile for a DID with aggregate stats and a first page of their publications."
}
stats object

Aggregate author counts shown on the profile header.

Properties

documentCount integer Optional

No description available.

followingCount integer Optional

No description available.

likeCount integer Optional

No description available.

publicationCount integer Optional

No description available.

subscriberCount integer Optional

No description available.

View raw schema
{
  "type": "object",
  "properties": {
    "likeCount": {
      "type": "integer"
    },
    "documentCount": {
      "type": "integer"
    },
    "followingCount": {
      "type": "integer"
    },
    "subscriberCount": {
      "type": "integer"
    },
    "publicationCount": {
      "type": "integer"
    }
  },
  "description": "Aggregate author counts shown on the profile header."
}

Lexicon Garden

@