atproto blogging
at main 45 lines 1.1 kB view raw
1{ 2 "lexicon": 1, 3 "id": "app.bsky.feed.getPosts", 4 "defs": { 5 "main": { 6 "type": "query", 7 "description": "Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'.", 8 "parameters": { 9 "type": "params", 10 "required": [ 11 "uris" 12 ], 13 "properties": { 14 "uris": { 15 "type": "array", 16 "description": "List of post AT-URIs to return hydrated views for.", 17 "items": { 18 "type": "string", 19 "format": "at-uri" 20 }, 21 "maxLength": 25 22 } 23 } 24 }, 25 "output": { 26 "encoding": "application/json", 27 "schema": { 28 "type": "object", 29 "required": [ 30 "posts" 31 ], 32 "properties": { 33 "posts": { 34 "type": "array", 35 "items": { 36 "type": "ref", 37 "ref": "app.bsky.feed.defs#postView" 38 } 39 } 40 } 41 } 42 } 43 } 44 } 45}