# ForgeMesh Principles JSON

> ForgeMesh Principles JSON is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the three numbered ForgeMesh principles plus surrounding philosophy statement as pre-parsed structured JSON, avoiding HTML scraping.

## Facts

- Endpoint: POST https://x402.forgemesh.io/forgemesh-principles
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-principles-json-5655b3b8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W476LO3l0nj_jnsO_OmPs

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 forgemesh-principles-json-5655b3b8 -d '<json body>'
```

Example prompt: Can you pull up the ForgeMesh principles as structured JSON — I need all three numbered principles plus the philosophy statement and closing line without having to scrape the HTML page.

## When to prefer this

Choose this endpoint when an agent needs the ForgeMesh principles in structured JSON form without parsing HTML. Preferable over scraping the public forgemesh.io page when deterministic field access is required or when operating in an environment where HTML parsing is unavailable or unreliable.

## Known failure modes

- Payment not completed — endpoint requires $0.01 USDC x402 payment before content is returned
- Network or gateway timeout resulting in no response
- Malformed POST body causing a 400 error
- Content schema changes on forgemesh.io causing stale or mismatched JSON output

## How this service works

The three numbered principles behind ForgeMesh, plus the surrounding philosophy statement and closing line, as structured JSON verbatim from forgemesh.io. The human page is free to read; this route returns the same content pre-parsed for agents that need it in JSON rather than scraped HTML.

## Output

A structured JSON object containing ForgeMesh's three numbered principles, the surrounding philosophy statement, and the closing line — identical in content to the human-readable forgemesh.io page but pre-parsed for 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [],
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "intro": [
   "We believe the future will not be built by humans alone, nor by AI alone. It will be built through collaboration between people, agents, and systems.",
   "ForgeMesh rejects gatekeeping, elitism, and the idea that only experts can contribute. Every builder starts somewhere. Every builder has something to teach."
  ],
  "source": "forgemesh.io — verbatim from forgemesh.io's philosophy section",
  "closing": "Forged Through Curiosity. Connected Through Collaboration.",
  "headline": "Every Builder Belongs.",
  "principles": [
   {
    "detail": "You do not need a title, a pedigree, or permission to start building. Questions are a valid entry point.",
    "number": 1,
    "statement": "Curiosity matters more than credentials."
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-principles-json-5655b3b8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
