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

Scrapes live public Instagram profile data for a given username via GET request

## Facts

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

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

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

## When to prefer this

Use this endpoint when you need live, real-time public Instagram profile data for a specific username without setting up your own scraping infrastructure. Ideal for influencer research, brand monitoring, or enriching contact data with social media metrics. Prefer this over storing stale data when freshness is critical.

## Known failure modes

- Instagram account does not exist or has been deleted — returns empty or error response
- Instagram profile is private — may return limited or no data
- Instagram rate limiting or anti-scraping measures block the request — returns failure or timeout
- Invalid username format provided — returns validation error
- Service unavailable or upstream Instagram changes break scraping — returns error

## How this service works

Live Instagram scraping

## Output

Returns raw scraped Instagram profile data including public profile fields such as username, bio, follower count, following count, post count, and other publicly available profile metadata from Instagram 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-a7a9dc68/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)
