No description available.
Parameters
aturi
string
at-uri
Optional
Hydrate ONE pet by its at-uri, as listed by pet.trezy.getPets. This is the mode the roster uses: the list call returns identifiers and each is fetched here, which keeps a large collection off the wire. Takes precedence over `did`.
did
string
did
Optional
Whose newest pet to return. Ignored when `aturi` is given. One of the two is required — sending neither refuses, because defaulting to anything here would answer about somebody.
Output
application/jsoncreatedAt
stringdatetime
Optional
An RFC 3339 formatted timestamp.
error
string
Optional
Present instead of a pet. `not found` is the ORIGINAL spelling, with a space, and it stays that way: PetPage branches on it and renaming it would break the public profile page for no gain.
not found, bad-requestmessage
string
Optional
No description available.
name
string
Optional
No description available.
species
string
Optional
No description available.
uri
stringat-uri
Optional
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": "query",
"output": {
"schema": {
"type": "object",
"required": [],
"properties": {
"uri": {
"type": "string",
"format": "at-uri"
},
"name": {
"type": "string"
},
"error": {
"type": "string",
"description": "Present instead of a pet. `not found` is the ORIGINAL spelling, with a space, and it stays that way: PetPage branches on it and renaming it would break the public profile page for no gain.",
"knownValues": [
"not found",
"bad-request"
]
},
"message": {
"type": "string"
},
"species": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [],
"properties": {
"did": {
"type": "string",
"format": "did",
"description": "Whose newest pet to return. Ignored when `aturi` is given. One of the two is required — sending neither refuses, because defaulting to anything here would answer about somebody."
},
"aturi": {
"type": "string",
"format": "at-uri",
"description": "Hydrate ONE pet by its at-uri, as listed by pet.trezy.getPets. This is the mode the roster uses: the list call returns identifiers and each is fetched here, which keeps a large collection off the wire. Takes precedence over `did`."
}
}
}
}