app.tempomusic.feed.getPost

lexicons.tempomusic.fan

Documentation

Fetch a single Tempo post by its AT-URI.

main query

Fetch a single Tempo post by its AT-URI.

Parameters

uri string at-uri Required

AT-URI of the post to fetch.

viewer string did Optional

DID of the requesting viewer. When present, the response carries a viewer projection.

Output

Encodingapplication/json

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.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
AT-URI of the post to fetch.
DID of the requesting viewer. When present, the response carries a viewer projection.
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."
}

Lexicon Garden

@