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

Fetches live, real-time scraped data from a public Instagram profile by username

## Facts

- Endpoint: GET https://api.influship.com/v1/raw/instagram/profile/nike
- 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-instagram-profile-scraper-9a4191bf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lT6_5iFXqRKGBoNxuRHDC

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-9a4191bf
```

Example prompt: Pull the live Instagram profile data for @nike right now — I need their current follower count, bio, and post stats from Influship's scraper.

## When to prefer this

Use this endpoint when you need live, real-time Instagram profile data without maintaining your own scraping infrastructure. Prefer this over cached data sources when recency matters (e.g. tracking follower growth, verifying current bio). Best suited for per-profile lookups rather than bulk discovery searches.

## Known failure modes

- Profile does not exist or is private — returns 404 or empty result
- Instagram rate limiting or blocking the scraper — returns 429 or timeout
- Invalid username format — returns 400 bad request
- Service downtime or scraping infrastructure failure — returns 5xx
- Payment not processed — returns 402 Payment Required

## How this service works

Live Instagram scraping

## Output

Returns raw, live-scraped data from the specified Instagram public profile, including follower count, following count, post count, bio text, profile image URL, and other publicly available profile metadata at the time of the request.

## 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-9a4191bf/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)
