# Download TikTok slideshow photos

**Use case:** 

Download photos from one public TikTok slideshow and get each saved photo in the dataset.

## Input

```json
{
  "slideshowUrls": [
    {
      "url": "https://www.tiktok.com/@anamiriamyepez/photo/7498924643227536645"
    }
  ],
  "maxItems": 1,
  "fileNamePattern": "{postId}-photo-{photoIndex}.{extension}"
}
```

## Output

```json
{
  "downloadUrl": {
    "label": "Download link",
    "format": "string"
  },
  "fileName": {
    "label": "File name",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Post link",
    "format": "string"
  },
  "requestedUrl": {
    "label": "Submitted link",
    "format": "string"
  },
  "videoId": {
    "label": "Post ID",
    "format": "string"
  },
  "photoIndex": {
    "label": "Photo number",
    "format": "integer"
  },
  "photoCount": {
    "label": "Photo count",
    "format": "integer"
  },
  "authorUsername": {
    "label": "Creator username",
    "format": "string"
  },
  "authorName": {
    "label": "Creator name",
    "format": "string"
  },
  "caption": {
    "label": "Caption",
    "format": "string"
  },
  "contentType": {
    "label": "Media type",
    "format": "string"
  },
  "fileSizeBytes": {
    "label": "File size (bytes)",
    "format": "integer"
  },
  "imageWidth": {
    "label": "Image width",
    "format": "integer"
  },
  "imageHeight": {
    "label": "Image height",
    "format": "integer"
  },
  "post.likeCount": {
    "label": "Likes",
    "format": "integer"
  },
  "post.commentCount": {
    "label": "Comments",
    "format": "integer"
  },
  "post.shareCount": {
    "label": "Shares",
    "format": "integer"
  },
  "audio.title": {
    "label": "Sound title",
    "format": "string"
  },
  "audio.authorName": {
    "label": "Sound creator",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [TikTok Slideshow Downloader](https://apify.com/maximedupre/tiktok-slideshow-downloader) with a specific input configuration. Visit the [Actor detail page](https://apify.com/maximedupre/tiktok-slideshow-downloader) to learn more, explore other use cases, and run it yourself.