# ForgeMesh Utility Grid — Daily Featured Endpoint Pick

> ForgeMesh Utility Grid — Daily Featured Endpoint Pick 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 the deterministic daily-featured API route from the ForgeMesh Utility Grid fleet, giving agents a date-specific spotlight on one of 547+ utility endpoints along with its schema, pricing, and an invitation to try it.

## Facts

- Endpoint: POST https://x402.forgemesh.io/x402-daily-pick
- 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-daily-featured-endpoint-pick-3acffb13
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_utCP6MD4YSXpAU8kH-PIk

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-daily-featured-endpoint-pick-3acffb13 -d '<json body>'
```

Example prompt: What's the ForgeMesh Utility Grid's featured API pick for today — show me the route, what it does, the price, and its input schema so I can decide whether to call it.

## When to prefer this

Use this endpoint when an agent needs to discover or sample what ForgeMesh Utility Grid offers without committing to the full fleet product sheet ($0.05). It is the cheapest entry point ($0.001) into the ForgeMesh catalog, ideal for daily briefings, automated API-discovery workflows, or agents that want to dynamically expand their toolset by surfacing new utility endpoints day by day.

## Known failure modes

- Invalid date format returns an error — must be YYYY-MM-DD
- Missing x402 payment results in a 402 challenge response that must be settled before the result is returned
- Future dates beyond the catalog's planned range may return unexpected results
- No result if the ForgeMesh fleet is offline or pool is unavailable

## How this service works

Daily pick from the ForgeMesh x402 catalog: a single featured paid endpoint chosen deterministically by UTC date from the full fleet pool. Response includes the featured route, USD price, schema, worked example, and a ready-to-run call pattern, plus where to fetch the featured service's full endpoint sheet. Cheapest recurring way to sample the fleet one capability at a time.

## Output

A JSON object containing the UTC date, the featured route (host, HTTP method, path, price, category, description, input schema, example output, product name, product ID), the rotation logic explanation, total pool size (547 routes), a link to the full fleet product sheet, and a 'try_it' instruction showing how to call the featured endpoint directly — all deterministic for the given date.

## 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-daily-featured-endpoint-pick-3acffb13/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)
