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

Fetches live scraped Instagram profile data for a given username via a direct GET request

## Facts

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

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

Example prompt: Can you pull the live Instagram profile data for @yakitoriguy — I need their follower count, bio, and post stats right now?

## When to prefer this

Use this endpoint when you need real-time, live Instagram profile data for a specific username without maintaining your own scraping infrastructure. Ideal for influencer research, social media monitoring, or enriching contact records with current Instagram stats. Prefer over cached/batch alternatives when freshness of data is critical.

## Known failure modes

- Instagram rate limiting or blocking may cause scrape failure
- Profile is private or does not exist — returns empty or error response
- Instagram UI changes may break scraper and return malformed data
- Payment of $0.01 USDC not processed — 402 response returned
- Username path parameter missing or malformed — request fails

## How this service works

Live Instagram scraping

## Output

Returns live-scraped Instagram profile data for the specified username, including public metrics such as follower count, following count, post count, bio text, and other profile metadata available on the public Instagram profile page.

## 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-cddbc545/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)
