Get a single record from a space.
Parameters
author
string
did
Required
A decentralized identifier (DID).
collection
string
nsid
Required
A namespaced identifier (e.g., app.bsky.feed.post).
inviteToken
string
Optional
Read-grant invite token. When supplied, replaces JWT auth for this read.
rkey
string
Required
No description available.
spaceUri
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
Output
Encoding
application/jsonrecord
refrsvp.atmo.space.defs#recordView
Required
No description available.
Errors
NotFound
Forbidden
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"
},
{
"name": "Forbidden"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"record"
],
"properties": {
"record": {
"ref": "rsvp.atmo.space.defs#recordView",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"spaceUri",
"collection",
"author",
"rkey"
],
"properties": {
"rkey": {
"type": "string"
},
"author": {
"type": "string",
"format": "did"
},
"spaceUri": {
"type": "string",
"format": "at-uri"
},
"collection": {
"type": "string",
"format": "nsid"
},
"inviteToken": {
"type": "string",
"description": "Read-grant invite token. When supplied, replaces JWT auth for this read."
}
}
},
"description": "Get a single record from a space."
}