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

Live-scrapes a public Instagram profile page and returns raw profile data for a given username

## Facts

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

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

Example prompt: Pull the live Instagram profile data for the account 'lacma' — I need their follower count, bio, and any other public stats you can grab right now.

## When to prefer this

Choose this endpoint when you need real-time, live Instagram profile data for a specific username and want raw scraped output rather than processed or cached influencer analytics. Ideal for influencer research, brand monitoring, or due-diligence workflows where freshness matters. Use over static databases when you need up-to-date follower counts or bios.

## Known failure modes

- Profile not found or account is private — returns empty or error response
- Instagram rate limiting or anti-scraping measures block the request
- Username does not exist — no data returned
- Temporary service unavailability on Instagram's side causing scrape failure
- Payment not processed — x402 payment required before data is returned

## How this service works

Live Instagram scraping

## Output

Raw scraped data from the Instagram public profile page for the specified username, including fields such as follower count, following count, bio text, post count, profile picture URL, and other publicly visible profile metadata.

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