# DripStack Publication Post Fetcher

> DripStack Publication Post Fetcher is a paid API for AI agents from dripstack.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Fetches a specific Substack newsletter post by publication and post slug, including a synthesized summary, for AI agent access via micropayment.

## Facts

- Endpoint: GET https://dripstack.xyz/api/v1/publications/%7BpublicationSlug%7D/%7BpostSlug%7D
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dripstack-publication-post-fetcher-a372406b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7rMnDno5JPJ3D3SlR3O7w

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 dripstack-publication-post-fetcher-a372406b
```

Example prompt: Can you fetch the Substack post 'how-ai-is-changing-writing' from the 'stratechery' publication on DripStack and give me the synthesized summary?

## When to prefer this

Use this endpoint when an AI agent needs to read or summarize a specific Substack newsletter post identified by its publication slug and post slug, and is willing to pay a small USDC micropayment per retrieval. Prefer this over scraping Substack directly when you want a structured JSON response with a pre-synthesized summary, or when the post may be behind a paywall.

## Known failure modes

- Invalid publicationSlug or postSlug returns a 404 not found error
- Payment of 0.1 USDC not provided or rejected results in a 402 Payment Required response
- Post exists but has no synthesized summary field populated
- Network timeout if Substack origin is slow to respond
- Malformed slug (e.g. containing special characters) may cause a routing error

## How this service works

Connect your agent to top financial newsletters and podcasts.

## Output

Returns a JSON object with the post's ID, URL, slug, title, author, cover image URL, subtitle, SEO description, creation/update/publish timestamps, publication ID, publication slug, and a detailed synthesized summary of the newsletter post content.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": "clxexamplepostid0001",
  "url": "https://example.substack.com/p/example-post",
  "guid": "https://example.substack.com/p/example-post",
  "slug": "example-post",
  "title": "Example post title",
  "author": "Author display name",
  "imageUrl": "https://example.substack.com/img/cover.png",
  "subtitle": "Optional subtitle",
  "createdAt": "2024-01-15T11:00:00.000Z",
  "updatedAt": "2024-01-16T09:00:00.000Z",
  "description": "Optional SEO description",
  "publishedAt": "2024-01-15T12:00:00.000Z",
  "publicationId": "clxexamplepubid001",
  "publicationSlug": "example-publication",
  "synthesizedSummary": "Detailed synthesized summary of the newsletter post after successful payment."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dripstack-publication-post-fetcher-a372406b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from dripstack.xyz](https://www.zero.xyz/host/dripstack.xyz/llms.txt)
