# Influship Instagram Raw Posts Fetcher

> Influship Instagram Raw Posts Fetcher 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 raw Instagram post data for influencer discovery and creator analysis via the Influship platform

## Facts

- Endpoint: GET https://api.influship.com/v1/raw/instagram/posts
- 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-raw-posts-fetcher-9a82a109
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3dAOolbgVFtKFKjGsmMV2

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-raw-posts-fetcher-9a82a109
```

Example prompt: Pull the raw Instagram posts for the creator account @glossier so I can evaluate their content style and brand fit for our skincare campaign using Influship.

## When to prefer this

Choose this endpoint when you need raw, unprocessed Instagram post data for a specific creator as part of influencer vetting, brand fit analysis, or audience research — especially within a workflow already using the Influship platform for creator discovery across its 5M+ profile index.

## Known failure modes

- Empty data array returned if no posts found or profile is private
- HTTP 402 if payment of 0.01 USDC is not provided
- Rate limiting or authentication errors if request headers are malformed
- Invalid or missing query parameters may return an empty result set
- Instagram profile not indexed in Influship's 5M+ profile database returns no data

## How this service works

Batch Instagram post scraping

## Output

Returns a JSON object with a data array containing raw Instagram post records for the queried creator, including post content and metadata useful for influencer evaluation.

## 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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/influship-instagram-raw-posts-fetcher-9a82a109/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)
