# Nike Instagram Posts Scraper

**Use case:** 

Scrape Nike's latest Instagram posts: captions, likes, comments, hashtags, and media URLs. Export to JSON, CSV, or Excel.

## Input

```json
{
  "urls": [
    "https://www.instagram.com/p/DZK3iOsRlWX",
    "https://www.instagram.com/p/DZITFYIR_kD",
    "https://www.instagram.com/p/DYm02w4FPJR",
    "https://www.instagram.com/p/DZsj7O0mD_V",
    "https://www.instagram.com/p/DZsIbPVReM7",
    "https://www.instagram.com/p/DZpjWe_xzdC"
  ]
}
```

## Output

```json
{
  "user_posted": {
    "label": "Username",
    "format": "string"
  },
  "description": {
    "label": "Caption",
    "format": "string"
  },
  "likes": {
    "label": "Likes",
    "format": "integer"
  },
  "num_comments": {
    "label": "Comments",
    "format": "integer"
  },
  "date_posted": {
    "label": "Date Posted",
    "format": "string"
  },
  "content_type": {
    "label": "Content Type",
    "format": "string"
  },
  "url": {
    "label": "Post URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [🚀 Instagram Posts Scraper ⚡ No Login Required](https://apify.com/vulnv/instagram-posts-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/vulnv/instagram-posts-scraper) to learn more, explore other use cases, and run it yourself.