# Influship Instagram Profile Lookup

> Influship Instagram Profile Lookup 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 public profile data for a given Instagram username via the Influship API

## Facts

- Endpoint: GET https://api.influship.com/v1/profiles/instagram/mrbeast
- 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-lookup-a18154ce
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tDtp_VT_m2RB-q-be-d-z

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-lookup-a18154ce
```

Example prompt: Can you pull up the public Instagram profile data for mrbeast using Influship — I want to see their follower count and engagement metrics?

## When to prefer this

Use this endpoint when you need live, up-to-date public Instagram profile data for a specific username, especially for influencer research or vetting. Prefer this over manual scraping or general social media APIs when you need quick per-profile lookups with pay-per-call pricing.

## Known failure modes

- Profile not found — username does not exist or is private
- Rate limiting if too many requests are made
- Payment failure — insufficient USDC balance for x402 microtransaction
- Invalid username format returns an error
- Instagram account may have been deleted or suspended

## How this service works

Profile lookup

## Output

Returns public Instagram profile information for the specified username, including follower counts, engagement metrics, and other available profile data scraped live from Instagram.

## 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-instagram-profile-lookup-a18154ce/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)
