# Anechoic Instagram URL Scraper

**Use case:** 

Extract detailed information from specified Instagram post URLs. Receive raw data and results for successful and failed scrapes.

## Input

```json
{
  "urls": [
    "https://www.instagram.com/p/DbSsa5kB_mT/",
    "https://www.instagram.com/p/DbSZLLszvmc/",
    "https://www.instagram.com/p/DbSvtKyB5Oy/",
    "https://www.instagram.com/p/DbSjwOqDn_u/",
    "https://www.instagram.com/p/DbSmd_IznYX/",
    "https://www.instagram.com/p/DbStAt3mJyo/",
    "https://www.instagram.com/p/DbRw8KSz_xo/",
    "https://www.instagram.com/p/DbTY0lez-yC/",
    "https://www.instagram.com/p/DbSuN5jk0xS/",
    "https://www.instagram.com/p/DbS8Y2JswxP/"
  ],
  "includeRaw": true,
  "showFailedScrapeResults": true,
  "proxyConfiguration": {
    "useApifyProxy": false,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  },
  "concurrency": 8
}
```

## Output

```json
{
  "url": {
    "label": "Original URL",
    "format": "string"
  },
  "canonicalUrl": {
    "label": "Canonical URL",
    "format": "string"
  },
  "caption": {
    "label": "Caption",
    "format": "string"
  },
  "ownerUsername": {
    "label": "Owner username",
    "format": "string"
  },
  "ownerFullName": {
    "label": "Owner full name",
    "format": "string"
  },
  "timestamp": {
    "label": "Timestamp",
    "format": "string"
  },
  "likesCount": {
    "label": "Likes count",
    "format": "integer"
  },
  "commentsCount": {
    "label": "Comments count",
    "format": "integer"
  },
  "view_count": {
    "label": "View count",
    "format": "integer"
  },
  "media_repost_count": {
    "label": "Media repost count",
    "format": "integer"
  },
  "user": {
    "label": "User payload",
    "format": "object"
  },
  "carousel_media": {
    "label": "Carousel media",
    "format": "array"
  },
  "preview_comments": {
    "label": "Preview comments",
    "format": "array"
  },
  "usertags": {
    "label": "User tags",
    "format": "object"
  },
  "location": {
    "label": "Location",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [Cheap Instagram Urls Scrapper](https://apify.com/anechoic/rvare-apify-ig) with a specific input configuration. Visit the [Actor detail page](https://apify.com/anechoic/rvare-apify-ig) to learn more, explore other use cases, and run it yourself.