# TLMNT Farcaster Mini App Audit

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

Runs a static server-side diagnostic scan on a Farcaster Mini App URL and returns a structured evidence dossier identifying manifest, embed, add-app, sharing, notification, and mobile failures.

## Facts

- Endpoint: POST https://tlmnt.app/api/x402/miniapp-audit
- Price: $0.75/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-audit-c9520c6a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eZfTSJ-OiWVBOgKGdIeUo

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-audit-c9520c6a -d '<json body>'
```

Example prompt: Can you run a Mini App Doctor audit on https://myapp.example.com and tell me if there are any manifest, embed, or add-app failures blocking it from going live on Farcaster?

## When to prefer this

Use this endpoint when you need a fast, automated, server-side diagnostic of a Farcaster Mini App — especially before launch or after a deployment change — and want a structured JSON verdict rather than a manual review. Prefer it over generic URL validators when the target is specifically a Farcaster Mini App and you need actionable failure categories like manifest, embed, add-app, sharing, and notification errors. Not a substitute for full client-side or end-to-end testing.

## Known failure modes

- Invalid or unreachable URL returns an error or empty target metadata
- Malformed Mini App with no detectable manifest may produce an indeterminate verdict
- Rate limiting or payment verification failure blocks the scan
- Timeout if the target URL is very slow to respond
- Scans only static server-side signals — client-side rendering issues are flagged as needing further verification, not diagnosed

## 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

A JSON object containing the scanned URL's final resolved URL, hostname, and scan timestamp, plus a 'Mini App Doctor Static Evidence Dossier' with a schema version, and a static evidence verdict that includes the scope ('static-server-side'), an overall verdict string (e.g. 'static-failures-found' or 'pass'), a boolean readiness flag for release, and a boolean flag for whether client-side verification is needed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "format": "uri",
   "maxLength": 2048,
   "minLength": 1,
   "description": "Public HTTPS Farcaster Mini App URL to inspect."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "target": {
   "finalUrl": "https://example.com/",
   "hostname": "example.com",
   "scannedAt": "2026-08-09T20:00:00.000Z",
   "requestedUrl": "https://example.com/"
  },
  "product": "Mini App Doctor Static Evidence Dossier",
  "schemaVersion": 1,
  "staticEvidenceVerdict": {
   "scope": "static-server-side",
   "verdict": "static-failures-found",
   "readyForRelease": false,
   "readyForClientVerification": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tlmnt-farcaster-mini-app-audit-c9520c6a/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)
