Fetch a single Tempo post by its AT-URI.
Parameters
Output
Encoding
application/jsonpost
refapp.tempomusic.feed.defs#postView
Required
No description available.
Errors
NotFound
No post is indexed at the requested AT-URI. Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "NotFound",
"description": "No post is indexed at the requested AT-URI."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"post"
],
"properties": {
"post": {
"ref": "app.tempomusic.feed.defs#postView",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the post to fetch."
},
"viewer": {
"type": "string",
"format": "did",
"description": "DID of the requesting viewer. When present, the response carries a viewer projection."
}
}
},
"description": "Fetch a single Tempo post by its AT-URI."
}