List photos with optional filters by author, album, tag, or visibility.
Parameters
albumUri
string
at-uri
Optional
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
cursor
string
Optional
No description available.
did
string
did
Optional
A decentralized identifier (DID).
limit
integer
Optional
No description available.
tag
string
Optional
No description available.
visibility
string
Optional
No description available.
Output
Encoding
application/jsoncursor
string
Optional
No description available.
photos
array
Required
No description available.
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": [
"photos"
],
"properties": {
"cursor": {
"type": "string"
},
"photos": {
"type": "array",
"items": {
"ref": "net.atpix.gallery.defs#photoView",
"type": "ref"
}
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"did": {
"type": "string",
"format": "did"
},
"tag": {
"type": "string",
"maxLength": 64
},
"limit": {
"type": "integer",
"default": 20,
"maximum": 100,
"minimum": 1
},
"cursor": {
"type": "string"
},
"albumUri": {
"type": "string",
"format": "at-uri"
},
"visibility": {
"enum": [
"public",
"unlisted",
"permissioned"
],
"type": "string"
}
}
},
"description": "List photos with optional filters by author, album, tag, or visibility."
}