$ man app-store-rejection-explain
/app-store-rejection-explain
PRICE / CALL
$0.02
USDC · base mainnet · scheme: exact
METHOD
POST
CLUSTER
prooflayerCATEGORY
uncategorized
STATUS
● live
NAME
app-store-rejection-explain — explains app store and google play rejections and turns them into a resubmission plan
SYNOPSIS
POST https://x402.agentutility.ai/app-store-rejection-explain
Content-Type: application/json
X-PAYMENT: <signed-transferWithAuthorization>
{ ... }↳ first call →
402 Payment Required. Sign USDCtransferWithAuthorization, retry with theX-PAYMENT header.DESCRIPTION
Explains App Store and Google Play rejections and turns them into a resubmission plan. Parses rejection text and app metadata, identifies likely policy areas, extracts deadlines, and returns a policy-clean resubmission checklist plus reviewer-note outline. Does not promise approval or recommend platform-policy evasion. Use it for Google Play rejection triage or as a mobile app review policy checklist.
INPUT — request schema
| property | type | description | req? |
|---|---|---|---|
| rejection_text | string | Apple App Review or Google Play rejection text. Max 30k chars. | required |
| platform | string | Optional platform hint. enum: apple · google | optional |
| app_metadata | string | Optional app description, screenshots notes, release notes, or metadata excerpt. | optional |
OUTPUT — response shape
| field | type | description |
|---|---|---|
| platform | string | — |
| urgency | string | — |
| likely_policy_areas | string | — |
| resubmission_checklist | string | — |
| boundary | string | — |
EXAMPLES — two ways to call
EXAMPLE 1 · curl
curl -X POST https://x402.agentutility.ai/app-store-rejection-explain \
-H 'Content-Type: application/json' \
-d '{ }'first response =
402 Payment Required with payment requirements; sign + retry with X-PAYMENT.EXAMPLE 2 · mcp
# Install the MCP package for this endpoint's cluster npx -y @agentutility/mcp-<cluster> # Required: EVM private key with USDC on Base export X402_PRIVATE_KEY=0x... # Then call the app-store-rejection-explain tool from your MCP-aware agent.
MCP server handles payment automatically — your coding agent just calls the tool by name.
METADATA
- tags
- prooflayerappstorerejectionexplainapp-store-rejection-explain
- methods
- POST
- cluster
- prooflayer
- price
- $0.02 USDC per call
ADJACENT — other endpoints in prooflayer
| endpoint | description | price |
|---|---|---|
| db-migration-risk | Audits database migrations for risky SQL before deploy. | $0.02 |
| deploy-config-risk | Audits deploy configuration files for production risks. | $0.02 |
| secrets-exposure-check | Scans project config files for hardcoded secrets before you deploy. | $0.02 |
| ai-content-detector | Detect AI-generated writing with a calibrated probability score. | $0.03 |
| dep-risk-summary | Scores dependency risk for a whole repo from its manifests and lockfiles. | $0.03 |
| github-repo-health | GitHub repo health score / open-source maintainability checker. | $0.03 |
| package-risk-npm | Scores supply-chain risk for an npm package before you install it. | $0.03 |
| prompt-injection-surface | Scans AI app source code for prompt injection risk at LLM call sites. | $0.03 |
SEE ALSO