Hydrate seed views for a set of AT-URIs. Seeds are returned in the same order as the input URIs. Unknown URIs are silently omitted.
Parameters
AT-URIs of seeds to hydrate.
Output
Encodingapplication/json
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
Sending request...
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"seeds"
],
"properties": {
"seeds": {
"type": "array",
"items": {
"ref": "#seedView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"uris"
],
"properties": {
"uris": {
"type": "array",
"items": {
"type": "string",
"format": "at-uri"
},
"maxLength": 25,
"description": "AT-URIs of seeds to hydrate."
}
}
},
"description": "Hydrate seed views for a set of AT-URIs. Seeds are returned in the same order as the input URIs. Unknown URIs are silently omitted."
}
No description available.
Properties
A decentralized identifier (DID).
No description available.
maxLength: 640 bytesmaxGraphemes: 64 graphemes
An AT Protocol handle (e.g., alice.bsky.social).
View raw schema
{
"type": "object",
"required": [
"did",
"handle"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"handle": {
"type": "string",
"format": "handle"
},
"displayName": {
"type": "string",
"maxLength": 640,
"maxGraphemes": 64
}
}
}
No description available.
Properties
A content identifier (CID) referencing immutable data.
An RFC 3339 formatted timestamp.
Earliest expiresAt across the entire provenance chain (self + ancestors). Absent when no seed in the chain has an expiry.
Immediate grantor (depth 1 only) — the author of this seed record. For a root seed this is also the chain's origin.
No description available.
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
View raw schema
{
"type": "object",
"required": [
"uri",
"cid",
"grantee",
"grantedBy",
"createdAt"
],
"properties": {
"cid": {
"type": "string",
"format": "cid"
},
"uri": {
"type": "string",
"format": "at-uri"
},
"grantee": {
"ref": "#authorView",
"type": "ref"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"expiresAt": {
"type": "string",
"format": "datetime",
"description": "Earliest expiresAt across the entire provenance chain (self + ancestors). Absent when no seed in the chain has an expiry."
},
"grantedBy": {
"ref": "#authorView",
"type": "ref",
"description": "Immediate grantor (depth 1 only) — the author of this seed record. For a root seed this is also the chain's origin."
}
}
}