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

Live-scrapes a specific Instagram profile page and returns its raw data

## Facts

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

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-fe2f22a6
```

Example prompt: Can you pull the live Instagram profile data for the account jijisjazzclub — I want to see their follower count, bio, and any other profile details available right now?

## When to prefer this

Use this endpoint when you need live, real-time Instagram profile data for a specific known username without authenticating as an Instagram user. Ideal for influencer research, lead enrichment, or monitoring a specific account's public metrics. Prefer over official Instagram APIs when you need scraping without OAuth or when the official API is unavailable.

## Known failure modes

- Instagram rate limiting or blocking the scraper returns an error or empty response
- Private or suspended Instagram accounts may return restricted data
- Invalid or non-existent Instagram username returns a 404 or empty result
- Instagram DOM/API changes may break the scraper and return malformed data
- Service unavailability returns a 402 or 5xx error

## How this service works

Live Instagram scraping

## Output

Raw scraped Instagram profile data for the specified account, including fields such as follower count, following count, bio text, post count, profile picture URL, and other publicly visible profile 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-fe2f22a6/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)
