atproto blogging
1{
2 "lexicon": 1,
3 "id": "sh.weaver.actor.getProfile",
4 "defs": {
5 "main": {
6 "type": "query",
7 "description": "Get detailed profile view of an actor. Does not require auth, but contains relevant metadata with auth.",
8 "parameters": {
9 "type": "params",
10 "required": ["actor"],
11 "properties": {
12 "actor": {
13 "type": "string",
14 "format": "at-identifier",
15 "description": "Handle or DID of account to fetch profile of."
16 }
17 }
18 },
19 "output": {
20 "encoding": "application/json",
21 "schema": {
22 "type": "ref",
23 "ref": "sh.weaver.actor.defs#profileDataView"
24 }
25 }
26 }
27 }
28}