atproto blogging
1{
2 "lexicon": 1,
3 "id": "app.bsky.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": [
11 "actor"
12 ],
13 "properties": {
14 "actor": {
15 "type": "string",
16 "description": "Handle or DID of account to fetch profile of.",
17 "format": "at-identifier"
18 }
19 }
20 },
21 "output": {
22 "encoding": "application/json",
23 "schema": {
24 "type": "ref",
25 "ref": "app.bsky.actor.defs#profileViewDetailed"
26 }
27 }
28 }
29 }
30}