Create a new orbit.
Input
Encoding
application/jsondescription
string
Optional
No description available.
maxLength: 256 bytesfeeds
object
Optional
No description available.
name
string
Required
No description available.
maxLength: 64 bytesminLength: 1 bytesOutput
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).
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"maxLength": 64,
"minLength": 1
},
"feeds": {
"type": "object",
"properties": {
"text": {
"type": "string",
"format": "at-uri"
},
"photo": {
"type": "string",
"format": "at-uri"
},
"video": {
"type": "string",
"format": "at-uri"
}
}
},
"description": {
"type": "string",
"maxLength": 256
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"uri",
"cid"
],
"properties": {
"cid": {
"type": "string",
"format": "cid"
},
"uri": {
"type": "string",
"format": "at-uri"
}
}
},
"encoding": "application/json"
},
"description": "Create a new orbit."
}