# 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 data from a public Instagram profile by username

## Facts

- Endpoint: GET https://api.influship.com/v1/raw/instagram/profile/canarytest
- 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-5856a89d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LHj0inNcLc15SnJg6NeB6

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-5856a89d
```

Example prompt: Can you pull the live Instagram profile data for the account 'canarytest' — I need their current follower count, bio, and post stats for an influencer evaluation?

## When to prefer this

Use this endpoint when you need real-time, live Instagram profile data for a specific username rather than cached or historical data. Ideal for influencer vetting, creator discovery workflows, or any use case where freshness of follower counts and profile metadata matters. Prefer over database-backed profile lookups when accuracy and recency are critical.

## Known failure modes

- Profile not found or username does not exist — likely 404 or empty response
- Private Instagram account — data may be unavailable or limited
- Instagram rate limiting or anti-scraping measures causing failed fetch
- Invalid or malformed username in path parameter
- Payment not processed — x402 payment required before data is returned

## How this service works

Live Instagram scraping

## Output

Returns live-scraped public Instagram profile data including follower count, following count, bio text, post count, profile image, and other publicly available account metadata for the specified username.

## 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-5856a89d/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)
