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

Fetches cached or stored profile data for a specific Instagram username from the Influship creator database

## Facts

- Endpoint: GET https://api.influship.com/v1/profiles/instagram/whitneyjohns
- 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-lookup-e8787d1a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zqUXOuXqS40nf4JnQ8kWa

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

Example prompt: Can you pull up the Influship profile for the Instagram account 'whitneyjohns' — I need their bio, follower count, and engagement data?

## When to prefer this

Use this endpoint when you need quick, low-cost lookup of a known Instagram creator's profile data from Influship's indexed database. Prefer this over live scraping endpoints when you want cached data at $0.01 per call rather than real-time Instagram scraping. Best suited for known creators already in the Influship index rather than newly discovered accounts.

## Known failure modes

- Profile not found in Influship database — unknown or unindexed Instagram username returns 404
- Payment authorization failure via x402 protocol — insufficient USDC balance or missing payment header
- Rate limiting or quota exceeded — too many requests in a short period
- Instagram username changed or account deleted — stale data or missing record
- Invalid path parameter format returns 400 bad request

## How this service works

Profile lookup

## Output

Returns stored profile data for the specified Instagram username, including creator details such as follower count, bio, engagement metrics, and other profile attributes indexed by Influship's creator database.

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