# NBA Instagram Posts Scraper

**Use case:** 

Scrape the NBA'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/DZjTK_TMzpt",
    "https://www.instagram.com/p/DZjUIp-jCvB",
    "https://www.instagram.com/p/DZjSDtXjOnw",
    "https://www.instagram.com/p/DZ1Cj_WCY99",
    "https://www.instagram.com/p/DZ0uhV4xW8h",
    "https://www.instagram.com/p/DZ0nL1xx0wM"
  ]
}
```

## 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.