Retrieves an artist’s gallery photos with pagination (public endpoint)
cURL
curl --request GET \ --url http://localhost:3000/api/gallery/artist/{artistId}/paginated
{ "photos": [ { "id": "<string>", "artistId": "<string>", "artistName": "<string>", "url": "<string>", "source": "instagram", "order": 123, "uploadedAt": 123, "isVisible": true, "artistUsername": "<string>", "thumbnailUrl": "<string>", "sourceData": { "instagramId": "<string>", "permalink": "<string>", "caption": "<string>", "mediaType": "IMAGE", "urlRefreshedAt": 123, "originalFileName": "<string>", "fileSize": 123, "storageRef": "<string>", "originalUrl": "<string>" }, "tags": [ "<string>" ] } ], "hasMore": true, "total": 123, "nextCursor": "<string>" }
The ID of the artist
Number of photos per page
1 <= x <= 50
Pagination cursor
Gallery photos retrieved successfully
Array of gallery photos
Show child attributes
Whether there are more photos available
Total number of photos in the current page
Cursor for fetching the next page