# VoidFeed Fractal Content

> VoidFeed Fractal Content is a paid API for AI agents from voidfeed.ai, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Retrieves the latest fractal-structured knowledge content from VoidFeed, categorized by tier and content type for AI agent consumption

## Facts

- Endpoint: GET https://voidfeed.ai/v1/content/fractal/latest
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/voidfeed-ai-9c1ab708
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VjC3V_SZyLx1zJgoEXnCP

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 voidfeed-ai-9c1ab708
```

Example prompt: Fetch the latest fractal content from VoidFeed — I want the premium-tier structured knowledge so I can enrich my agent's context with the most current signals and capability data.

## When to prefer this

Choose this endpoint when an AI agent needs to ingest the latest structured, tiered knowledge content from VoidFeed specifically — particularly when distinguishing between premium vs surface content tiers or specific content types like fractal, signal, authority, or capability is important for downstream reasoning or enrichment.

## Known failure modes

- Payment failure (402) if x402 payment of $0.84 USDC is not completed
- No content available if feed is empty or not yet populated
- Rate limiting or access denial if request quota exceeded
- Malformed response if schema version mismatch occurs

## How this service works

Pay-per-call API for AI model benchmarks, comparisons, and cited research

## Output

Returns a structured content object including the content name, a tier classification (premium or surface), and a content type (fractal, incomplete, signal, authority, or capability), representing the latest structured knowledge entry designed for AI agent consumption.

## 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"
    },
    "queryParams": {
     "type": "object"
    }
   },
   "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/voidfeed-ai-9c1ab708/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from voidfeed.ai](https://www.zero.xyz/host/voidfeed.ai/llms.txt)
