Skip to main content
GET
/
flash
/
artist
/
{id}
/
paginated
Get Artist Flash Listings
curl --request GET \
  --url http://localhost:3000/api/flash/artist/{id}/paginated
{
  "flash": [
    {
      "source": "instagram",
      "sourceData": {
        "instagramId": "<string>",
        "permalink": "<string>",
        "mediaType": "IMAGE",
        "url": "<string>",
        "caption": "<string>",
        "thumbnailUrl": "<string>",
        "urlRefreshedAt": 123,
        "storageRef": "<string>",
        "fileSize": 123
      },
      "id": "<string>",
      "artistId": "<string>",
      "artistName": "<string>",
      "artistUsername": "<string>",
      "price": {
        "type": "fixed",
        "amount": "<string>"
      },
      "size": {
        "unit": "in",
        "minSize": "<string>",
        "maxSize": "<string>"
      },
      "styles": [
        "<string>"
      ],
      "isAvailable": true,
      "isVisible": true,
      "createdAt": 123,
      "updatedAt": 123,
      "order": 123,
      "sessionDuration": {
        "blocks": 123
      },
      "viewCount": 123,
      "bookmarkCount": 123,
      "tags": [
        "<string>"
      ],
      "notes": "<string>"
    }
  ],
  "hasMore": true,
  "total": 123,
  "nextCursor": "<string>"
}

Path Parameters

id
string
required

ID of the artist

Query Parameters

limit
integer
default:20

Number of flash listings to return (max 50)

Required range: 1 <= x <= 50
cursor
string

Cursor for pagination

Response

Flash listings retrieved successfully

flash
object[]
required

Array of flash listings

  • Option 1
  • Option 2
  • Option 3
hasMore
boolean
required

Whether there are more results available

total
number
required

Total number of flash listings in the current page

nextCursor
string

Cursor for the next page of results