# ForgeMesh Utility Grid — Endpoint of the Day

> ForgeMesh Utility Grid — Endpoint of the Day is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns today's (or a specified date's) featured API endpoint from the ForgeMesh Utility Grid fleet, including its route, price, schema, and example output, as a discovery and preview tool for the 547-route collection.

## Facts

- Endpoint: POST https://x402.forgemesh.io/endpoint-of-the-day
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-utility-grid-endpoint-of-the-day-ace2013f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tfoEo2NPZbZc8VZsJ4ptU

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-utility-grid-endpoint-of-the-day-ace2013f -d '<json body>'
```

Example prompt: What's the ForgeMesh Utility Grid endpoint of the day for 2026-07-20 — show me the featured route, its price, input schema, and an example of what it returns.

## When to prefer this

Use this endpoint when an agent or developer wants to discover or sample from the ForgeMesh Utility Grid fleet without committing to the full $0.05 fleet-product-detail catalog call. It is the cheapest entry point ($0.001) for exploring what ForgeMesh offers, especially useful for daily discovery workflows or automated scouting of new utility routes.

## Known failure modes

- Invalid date format (not YYYY-MM-DD) may result in a 400 or default-to-today behavior
- Date far in the future or past may return no match if outside the rotation window
- 402 payment challenge must be resolved before the result is returned — bare call without payment returns HTTP 402
- Network errors or ForgeMesh downtime return no response

## How this service works

Endpoint-of-the-day picker for the ForgeMesh x402 fleet: every UTC day one of 500+ paid routes across 11 services is featured with its price, description, input schema, example output, and payment instructions. Rotation is deterministic — no randomness, no repeats until the whole pool has had its day. Optional date (YYYY-MM-DD) to preview a specific day's pick.

## Output

A JSON object containing the featured date, the highlighted route's hostname, path, HTTP method, price, category, product name, description, input schema, and example output — plus a try-it instruction URL, pool size (547 routes), rotation logic explanation, catalog generation timestamp, and a reference to the full product sheet endpoint.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "date": {
   "type": "string",
   "description": "Optional: preview a specific UTC day's pick, format YYYY-MM-DD. Defaults to today."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "date": "2026-07-18",
  "try_it": "POST https://x402.forgemesh.io/recent-earthquakes — the first bare call returns HTTP 402 with exact USDC payment requirements (Base mainnet); settle with any x402 client and retry to get the data.",
  "featured": {
   "host": "x402.forgemesh.io",
   "price": "$0.005",
   "route": "/recent-earthquakes",
   "method": "POST",
   "category": "utility-grid",
   "product_id": "utility-grid",
   "description": "Recent earthquakes API: latest global quakes above your magnitude threshold from a real-time seismic feed…",
   "input_schema": {
    "type": "object",
    "properties": {
     "min_magnitude": {
      "type": "string",
      "description": "Minimum magnitude, default 4"
     }
    }
   },
   "product_name": "ForgeMesh Utility Grid",
   "example_output": {
    "data": {
     "type": "FeatureCollection"
    },
    "attribution": "U.S. Geological Survey (public domain)"
   }
  },
  "rotation": "deterministic by UTC date — same date always returns the same pick; every route in the fleet gets its day",
  "pool_size": 547,
  "full_product_sheet": "POST https://x402.forgemesh.io/fleet-product-detail ($0.05) with {\"product\":\"utility-grid\"} for every route, schema, and worked example on ForgeMesh Utility Grid.",
  "catalog_generated_at": "2026-07-18T16:21:11.232Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-utility-grid-endpoint-of-the-day-ace2013f/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)
