Fetch the full detail view of a single listing by DID and record key.
Parameters
Output
Encoding
application/jsonlisting
refcommunity.gifthood.feed.defs#listingDetailView
Required
No description available.
Errors
NotFound
NotAvailableToPublic
The author hides their content from logged-out viewers; sign in to view. 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": "NotAvailableToPublic",
"description": "The author hides their content from logged-out viewers; sign in to view."
}
],
"output": {
"schema": {
"type": "object",
"required": [
"listing"
],
"properties": {
"listing": {
"ref": "community.gifthood.feed.defs#listingDetailView",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"did",
"rkey"
],
"properties": {
"did": {
"type": "string",
"format": "did",
"description": "DID of the account that created the listing."
},
"rkey": {
"type": "string",
"description": "Record key (TID) of the listing record in the poster's repo."
}
}
},
"description": "Fetch the full detail view of a single listing by DID and record key."
}