POST
/
v1
/
instagram
/
post
curl -X POST https://api.zocialmine.com/v1/instagram/post \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://www.instagram.com/p/ABC123xyz/"
  }'
{
  "status": "success",
  "data": {
    "id": "3456789012345678901",
    "shortcode": "ABC123xyz",
    "caption": "Post caption #hashtag",
    "timestamp": 1700000000,
    "author": {
      "id": "12345678901",
      "username": "username",
      "fullName": "Display Name"
    },
    "stats": {
      "likeCount": 150000,
      "commentCount": 3200
    },
    "media": {
      "type": "image",
      "url": "https://scontent.cdninstagram.com/...",
      "dimensions": {
        "width": 1080,
        "height": 1080
      }
    }
  }
}
Extracts metadata from a single Instagram post URL, including stats, author info, and media URLs. Cost: 2 credits per request.

Request

url
string
required
The Instagram post URL.Example: https://www.instagram.com/p/ABC123xyz/
webhook
string
A URL to receive the response via webhook. If provided, the request will be processed asynchronously and the result will be sent to this URL.

Response

status
string
"success" on successful request.
data
object
The post metadata including stats, author info, and media URLs.
curl -X POST https://api.zocialmine.com/v1/instagram/post \
  -H "x-api-key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://www.instagram.com/p/ABC123xyz/"
  }'
{
  "status": "success",
  "data": {
    "id": "3456789012345678901",
    "shortcode": "ABC123xyz",
    "caption": "Post caption #hashtag",
    "timestamp": 1700000000,
    "author": {
      "id": "12345678901",
      "username": "username",
      "fullName": "Display Name"
    },
    "stats": {
      "likeCount": 150000,
      "commentCount": 3200
    },
    "media": {
      "type": "image",
      "url": "https://scontent.cdninstagram.com/...",
      "dimensions": {
        "width": 1080,
        "height": 1080
      }
    }
  }
}