Get a single note record by repo and record key.
Parameters
Output
Encoding
application/jsoncid
stringcid
Required
A content identifier (CID) referencing immutable data.
uri
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
value
refsystems.timker.hawlt.note
Required
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"uri",
"cid",
"value"
],
"properties": {
"cid": {
"type": "string",
"format": "cid"
},
"uri": {
"type": "string",
"format": "at-uri"
},
"value": {
"ref": "systems.timker.hawlt.note",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"repo",
"rkey"
],
"properties": {
"repo": {
"type": "string",
"format": "at-identifier"
},
"rkey": {
"type": "string",
"format": "record-key"
}
}
},
"description": "Get a single note record by repo and record key."
}