# Influship Instagram Post Transcript Scraper

> Influship Instagram Post Transcript Scraper is a paid API for AI agents from api.influship.com, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-15).

Live-scrapes and returns the transcript/content data of a specific Instagram post by its shortcode

## Facts

- Endpoint: GET https://api.influship.com/v1/raw/instagram/transcript/DXPXyTLjkCW
- Price: $0.06/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-post-transcript-scraper-90b6529a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cZzUPmDptBmTEjw5nod07

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-post-transcript-scraper-90b6529a
```

Example prompt: Can you pull the live transcript and content from this Instagram post — shortcode DXPXyTLjkCW — so I can see what was actually said or posted?

## When to prefer this

Use this endpoint when you need live, real-time content extraction from a specific Instagram post identified by its shortcode. Prefer this over cached or indexed solutions when freshness of content matters, or when analyzing a specific influencer post for brand safety, content verification, or transcript analysis.

## Known failure modes

- Post is private or account is private — scrape returns empty or access-denied result
- Invalid or non-existent shortcode — returns 404 or error response
- Instagram rate limiting or anti-scrape measures active — request fails or returns incomplete data
- Post has been deleted — returns not found error
- Network timeout during live scrape — slow or failed response

## How this service works

Live Instagram scraping

## Output

Returns raw scraped data from the specified Instagram post including transcript text, captions, and associated media metadata as a JSON object

## 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-post-transcript-scraper-90b6529a/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)
