# Influship Instagram Profile Scraper

> Influship 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, last successful call 2026-07-18).

Live-scrapes a specific Instagram profile (e.g. 'leavingrecords') and returns raw profile data in real time

## Facts

- Endpoint: GET https://api.influship.com/v1/raw/instagram/profile/leavingrecords
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-07-18
- Success rate: 67% of calls made through Zero
- Rating: 5.0 / 5 from 1 review
- Activations on Zero: 4
- Tags: x402
- Canonical page: https://www.zero.xyz/c/influship-instagram-profile-scraper-e876e9b7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__OSq61RBBsM3jhQ1nsMv4

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-instagram-profile-scraper-e876e9b7
```

Example prompt: Can you pull the live Instagram profile data for the account 'leavingrecords' — I want to see their current follower count, bio, and any other public profile details?

## When to prefer this

Use this endpoint when you need live, real-time Instagram profile data for a specific username without relying on the official Instagram Graph API. Ideal for influencer research, brand monitoring, or creator analytics where up-to-date public profile stats are required. Prefer this over cached or aggregated influencer databases when freshness of data is critical.

## Known failure modes

- Profile not found or account is private — returns empty or error response
- Instagram rate limiting or blocking the scraper — may return stale or failed data
- Invalid or non-existent username — returns 404 or null profile
- Instagram UI changes breaking the scraper — may cause malformed or incomplete output
- Payment not processed (x402) — request rejected before scraping occurs

## How this service works

Live Instagram scraping

## Output

Raw scraped Instagram profile data for the specified username, including public profile fields such as follower count, following count, bio, post count, profile image, and engagement metadata, returned as a JSON object.

## 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-instagram-profile-scraper-e876e9b7/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)
