# Influship Live Instagram Profile Scraper

> Influship Live Instagram Profile Scraper is a paid API for AI agents from api.influship.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches live, real-time scraped Instagram profile data for a given Instagram username

## Facts

- Endpoint: GET https://api.influship.com/v1/raw/instagram/profile/prettybutwicked
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/influship-live-instagram-profile-scraper-f7847894
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MCR2DI6mDMDpvqWXAyls5

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability influship-live-instagram-profile-scraper-f7847894
```

Example prompt: Can you pull the live Instagram profile data for the account @prettybutwicked — I want to see their follower count, bio, and post stats right now?

## When to prefer this

Use this endpoint when you need live, real-time Instagram profile data for a specific known username and do not want cached or stale metrics. Ideal for influencer vetting, audience size verification, or enriching creator profiles before outreach. Prefer this over batch or search endpoints when you already know the exact Instagram handle and need up-to-the-moment stats.

## Known failure modes

- Instagram account does not exist or has been deleted — returns empty or 404-equivalent response
- Instagram account is private — public profile data may be limited or unavailable
- Instagram rate limiting or anti-scraping measures cause temporary failure
- Username typo or malformed path parameter results in no data returned
- Instagram changes its page structure causing scraper to return incomplete data
- Payment of 0.01 USDC not processed correctly via x402 protocol — request rejected

## How this service works

Live Instagram scraping

## Output

Returns live-scraped Instagram profile data for the specified username, including public profile metadata such as follower count, following count, bio, post count, engagement indicators, and other publicly available profile fields as scraped in real time from Instagram.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {},
  "queryParams": {}
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/influship-live-instagram-profile-scraper-f7847894/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.influship.com](https://www.zero.xyz/host/api.influship.com/llms.txt)
