# TLMNT Farcaster Mini App Deep Release Gate

> TLMNT Farcaster Mini App Deep Release Gate is a paid API for AI agents from tlmnt.app, paid per call via x402, $5.99/call, status unknown (last checked 2026-09-14).

Runs server-side release-gate diagnostics on a Farcaster Mini App URL, returning a GO/NO-GO decision on manifest, embed, and server-side readiness before client verification.

## Facts

- Endpoint: POST https://tlmnt.app/api/x402/miniapp-deep-release
- Price: $5.99/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tlmnt-farcaster-mini-app-deep-release-gate-71d5114b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aIfwDM9OJ9DZo7TWhQWlh

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 tlmnt-farcaster-mini-app-deep-release-gate-71d5114b -d '<json body>'
```

Example prompt: Run a server-side release gate check on my Farcaster Mini App at https://myapp.example.com/app?tenant=A and tell me whether it passes — I need to know if the manifest, embed, and server-side setup are all good before I push to production.

## When to prefer this

Use this endpoint when you need an authoritative, structured server-side GO/NO-GO verdict on a Farcaster Mini App before releasing or troubleshooting — specifically when you want to confirm manifest validity, embed correctness, and server-side gate passage in a single automated call. Prefer this over manual inspection or generic URL validators when working within the Farcaster/Warpcast ecosystem and needing a machine-readable release decision with a clear next-action directive.

## Known failure modes

- Invalid or unreachable Mini App URL returns an error or failed manifest fetch
- Manifest not found at /.well-known/farcaster.json results in a NO-GO decision
- Malformed tenant parameter may cause URL resolution failures
- Payment verification failure (x402 protocol) blocks the call entirely
- Timeout if the target app server is slow to respond

## How this service works

Free public diagnostics for Farcaster Mini Apps. TLMNT repairs manifest, embed, add-app, sharing, notification, and mobile failures in 24 hours. $79 USDC on Base, paid only after verification.

## Output

Returns a JSON object with the resolved target URL details (finalUrl, hostname, manifestUrl), the product name ('Mini App Doctor Pinned Server-Side Release Gate'), and a decision block containing scope ('pinned-server-side-release-evidence'), a GO/NO-GO value, a nextAction directive (e.g. RUN_CLIENT_VERIFICATION), and boolean flags for readyForRelease, serverSideGatePassed, and readyForClientVerification. Also includes a schemaVersion integer.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "format": "uri",
   "pattern": "^[Hh][Tt][Tt][Pp][Ss]://",
   "maxLength": 2048,
   "minLength": 1,
   "description": "Public HTTPS launch URL whose final fetched URL must exactly equal miniapp.homeUrl, including query. Deep v1 can return GO only when every referenced image is PNG; JPEG/GIF/WebP force INDETERMINATE. Fragments are ignored; no credentials, secrets, or non-443 ports."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "target": {
   "finalUrl": "https://example.com/app?tenant=A",
   "hostname": "example.com",
   "manifestUrl": "https://example.com/.well-known/farcaster.json",
   "requestedUrl": "https://example.com/app?tenant=A"
  },
  "product": "Mini App Doctor Pinned Server-Side Release Gate",
  "decision": {
   "scope": "pinned-server-side-release-evidence",
   "value": "GO",
   "nextAction": "RUN_CLIENT_VERIFICATION",
   "readyForRelease": false,
   "serverSideGatePassed": true,
   "readyForClientVerification": true
  },
  "schemaVersion": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tlmnt-farcaster-mini-app-deep-release-gate-71d5114b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tlmnt.app](https://www.zero.xyz/host/tlmnt.app/llms.txt)
