pub.chive.author.getProfile

chive.pub

Documentation

Get author profile and metrics by DID

main query

Get author profile and metrics by DID

Parameters

did string did Required

Author DID

Output

Encodingapplication/json

Errors

NotFound
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
Author DID
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "NotFound"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "profile",
        "metrics"
      ],
      "properties": {
        "metrics": {
          "ref": "#authorMetrics",
          "type": "ref"
        },
        "profile": {
          "ref": "#authorProfile",
          "type": "ref"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "did"
    ],
    "properties": {
      "did": {
        "type": "string",
        "format": "did",
        "description": "Author DID"
      }
    }
  },
  "description": "Get author profile and metrics by DID"
}
authorMetrics object

No description available.

Properties

totalDownloads integer Required

No description available.

totalEndorsements integer Required

No description available.

totalEprints integer Required

No description available.

totalViews integer Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "totalEprints",
    "totalViews",
    "totalDownloads",
    "totalEndorsements"
  ],
  "properties": {
    "totalViews": {
      "type": "integer"
    },
    "totalEprints": {
      "type": "integer"
    },
    "totalDownloads": {
      "type": "integer"
    },
    "totalEndorsements": {
      "type": "integer"
    }
  }
}
authorProfile object

No description available.

Properties

affiliation string Optional

No description available.

arxivAuthorId string Optional

No description available.

avatar string uri Optional

A valid URI.

bio string Optional

No description available.

dblpId string Optional

No description available.

did string did Required

A decentralized identifier (DID).

displayName string Optional

No description available.

fields array of string Optional

No description available.

googleScholarId string Optional

No description available.

handle string Optional

No description available.

nameVariants array of string Optional

No description available.

openAlexId string Optional

No description available.

openReviewId string Optional

No description available.

orcid string Optional

No description available.

orcidVerified boolean Optional

Whether the author's ORCID has been verified via OAuth

pdsEndpoint string Optional

No description available.

researchKeywords array of ref#researchKeyword Optional

No description available.

scopusAuthorId string Optional

No description available.

semanticScholarId string Optional

No description available.

website string uri Optional

A valid URI.

View raw schema
{
  "type": "object",
  "required": [
    "did"
  ],
  "properties": {
    "bio": {
      "type": "string"
    },
    "did": {
      "type": "string",
      "format": "did"
    },
    "orcid": {
      "type": "string"
    },
    "avatar": {
      "type": "string",
      "format": "uri"
    },
    "dblpId": {
      "type": "string"
    },
    "fields": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "handle": {
      "type": "string"
    },
    "website": {
      "type": "string",
      "format": "uri"
    },
    "openAlexId": {
      "type": "string"
    },
    "affiliation": {
      "type": "string"
    },
    "displayName": {
      "type": "string"
    },
    "pdsEndpoint": {
      "type": "string"
    },
    "affiliations": {
      "type": "array",
      "items": {
        "ref": "pub.chive.defs#affiliation",
        "type": "ref"
      }
    },
    "nameVariants": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "openReviewId": {
      "type": "string"
    },
    "arxivAuthorId": {
      "type": "string"
    },
    "orcidVerified": {
      "type": "boolean",
      "description": "Whether the author's ORCID has been verified via OAuth"
    },
    "scopusAuthorId": {
      "type": "string"
    },
    "googleScholarId": {
      "type": "string"
    },
    "researchKeywords": {
      "type": "array",
      "items": {
        "ref": "#researchKeyword",
        "type": "ref"
      }
    },
    "semanticScholarId": {
      "type": "string"
    },
    "previousAffiliations": {
      "type": "array",
      "items": {
        "ref": "pub.chive.defs#affiliation",
        "type": "ref"
      }
    }
  }
}
researchKeyword object

No description available.

Properties

fastId string Optional

No description available.

label string Required

No description available.

wikidataId string Optional

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "label"
  ],
  "properties": {
    "label": {
      "type": "string"
    },
    "fastId": {
      "type": "string"
    },
    "wikidataId": {
      "type": "string"
    }
  }
}

Lexicon Garden

@