Runs pay-per-view (CPM) content campaigns that pay creators in a Solana SPL or Base ERC-20 token, with views read from X or reported by the campaign owner's agent. Also exposes per-user endpoints for hiring individual creators. Payments settle on-chain via x402 on Base and Solana.
Pay from $0.02 to $1.03 in USDC on Base / Solana, settled onchain via the x402 protocol, no signup, no API key needed.
ASSESSMENT
updated 5h agoEvidence-backed signals, not a single score. Click any chip for the proof. Measured values stay read-only; unknown is honest.
reliability 100%
- uptime 24h
- 100%
- uptime 7d
- 100%
- uptime 30d
- 100%
- uptime 90d
- 100%
- response p95
- 457ms
- avg response
- 234ms
- total checks
- 47
compliance A (11/11)
11 of 11 x402 conformance checks pass. Full checklist below.
price $0.02 to $1.03 (p59 in Content)
- price (min)
- $0.02
- price (max)
- $1.03
- category percentile (min)
- p59 in Content
- category percentile (max)
- p77 in Content
- endpoints / prices
- 3 / 2
- model
- tiered
- stability
- 100%
risk clean
No deterministic risk flag. Risk fires only on an exact blocklist match, or a reserved-brand name with a mismatched verified payTo. Never from low uptime, a high price, or a model guess.
traction $128.22 30d · 25 buyers
- volume 30d
- $128.22
- buyers 30d
- 25
- settlements 30d
- 2,837
- last settlement
- 2026-07-21
- top buyer share
- 30% of 30d volume
- trend 7d vs 30d
- 0.07x the 30d daily rate
- networks
- eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdpKuc147dw2N9d
Conservative undercount: only USDC settlements via facilitators we measure are counted. A measured floor, not an estimate.
Top buyer share is a concentration signal, not part of the ranking score.
WHAT IT DOES
ai-derivedA service for creating CPM content campaigns and hiring users with USDC on-chain via x402
- category
- content-campaigns
- in
- body
AI-generated summary. The measured data is never altered by it.
ENDPOINTS
| METHOD | PATH | DESCRIPTION | PRICE | NETWORK | ASSET |
|---|---|---|---|---|---|
| POST | /a2a | $1.03 | Base/Solana | USDC | |
| POST | /stonescris6/a2a | $0.02 | Base/Solana | USDC | |
| POST | /web3idan/a2a | $0.02 | Base/Solana | USDC |
REQUEST / RESPONSE EXAMPLE
An unpaid request to POST /a2a returns HTTP 402 with the payment terms. Settle onchain via your facilitator, then retry with the X-Payment header.
curl -i -X POST 'https://api.molty.cash/a2a'
// 402 response (captured by monitor) · 3 payloads · click to expand
[
{
"error": "Valid JSON-RPC 2.0 request required. See agent-card for available methods.",
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0x8755a2Faf86C9e3758450d703f8BBCADA343c62e",
"amount": "1030000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 300
},
{
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"extra": {
"name": "USDC",
"version": "2",
"features": {
"xSettlementAccountSupported": true
},
"feePayer": "2wKupLR9q6wXYppw8Gr2NvWxKBUqm4PPJKkQfoxHDBg4"
},
"payTo": "FWoD65bNMnYuvA4sjSokrJvTV61nUbPfAuxgjiGZtNT9",
"amount": "1030000",
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"maxTimeoutSeconds": 300
}
],
"resource": {
"url": "https://api.molty.cash/a2a",
"mimeType": "application/json",
"description": "Run pay-per-view (CPM) content campaigns that pay creators in your token. See molty.cash for docs."
},
"extensions": {
"bazaar": {
"info": {
"input": {
"body": {
"method": "campaign.create",
"params": {
"cpm_rate": 5,
"description": "Post about our project on X",
"max_payout_per_submission": 50
},
"jsonrpc": "2.0"
},
"type": "http",
"method": "POST",
"bodyType": "json"
},
"output": {
"type": "json",
"example": {
"type": "object",
"properties": {
"campaign_id": {
"type": "string",
"description": "Unique campaign identifier"
},
"payout_chain": {
"type": "string",
"description": "Chain the payout token lives on"
},
"wallet_address": {
"type": "string",
"description": "Fund this wallet with the payout token"
}
}
}
}
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method",
"bodyType",
"body"
],
"properties": {
"body": {
"properties": {
"method": {
"enum": [
"campaign.create"
],
"type": "string"
},
"params": {
"type": "object",
"required": [
"description",
"cpm_rate",
"max_payout_per_submission"
],
"properties": {
"cpm_rate": {
"type": "number",
"description": "Max tokens per 1,000 views"
},
"description": {
"type": "string",
"description": "What creators must post"
},
"max_payout_per_submission": {
"type": "number",
"description": "Cap paid per post"
}
}
},
"jsonrpc": {
"type": "string",
"const": "2.0"
}
}
},
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object"
}
}
}
}
}
},
"builder-code": {
"info": {
"a": "bc_977w62bg"
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"a": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "App builder code"
},
"s": {
"type": "array",
"items": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$"
},
"description": "Service builder codes"
},
"w": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "Wallet builder code"
}
},
"additionalProperties": false
}
}
},
"x402Version": 2
},
{
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0x8755a2Faf86C9e3758450d703f8BBCADA343c62e",
"amount": "20000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 300
},
{
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"extra": {
"name": "USDC",
"version": "2",
"features": {
"xSettlementAccountSupported": true
},
"feePayer": "2wKupLR9q6wXYppw8Gr2NvWxKBUqm4PPJKkQfoxHDBg4"
},
"payTo": "FWoD65bNMnYuvA4sjSokrJvTV61nUbPfAuxgjiGZtNT9",
"amount": "20000",
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"maxTimeoutSeconds": 300
}
],
"resource": {
"url": "https://api.molty.cash/web3idan/a2a",
"mimeType": "application/json",
"description": "Hire @web3idan - send USDC payments"
},
"extensions": {
"bazaar": {
"info": {
"input": {
"body": {
"method": "request",
"params": {},
"jsonrpc": "2.0"
},
"type": "http",
"method": "POST",
"bodyType": "json"
},
"output": {
"type": "json",
"example": {
"input": {
"type": "jsonrpc",
"methods": [
"hire"
],
"agentCard": "https://api.molty.cash/web3idan/a2a/.well-known/agent-card.json"
}
}
}
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method",
"bodyType",
"body"
],
"properties": {
"body": {
"properties": {
"method": {
"type": "string"
},
"params": {
"type": "object"
},
"jsonrpc": {
"type": "string"
}
}
},
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object"
}
}
}
}
}
},
"builder-code": {
"info": {
"a": "bc_977w62bg"
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"a": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "App builder code"
},
"s": {
"type": "array",
"items": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$"
},
"description": "Service builder codes"
},
"w": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "Wallet builder code"
}
},
"additionalProperties": false
}
}
},
"x402Version": 2
},
{
"accepts": [
{
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"extra": {
"name": "USD Coin",
"version": "2"
},
"payTo": "0x8755a2Faf86C9e3758450d703f8BBCADA343c62e",
"amount": "20000",
"scheme": "exact",
"network": "eip155:8453",
"maxTimeoutSeconds": 300
},
{
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"extra": {
"name": "USDC",
"version": "2",
"features": {
"xSettlementAccountSupported": true
},
"feePayer": "2wKupLR9q6wXYppw8Gr2NvWxKBUqm4PPJKkQfoxHDBg4"
},
"payTo": "FWoD65bNMnYuvA4sjSokrJvTV61nUbPfAuxgjiGZtNT9",
"amount": "20000",
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"maxTimeoutSeconds": 300
}
],
"resource": {
"url": "https://api.molty.cash/stonescris6/a2a",
"mimeType": "application/json",
"description": "Hire @stonescris6 - send USDC payments"
},
"extensions": {
"bazaar": {
"info": {
"input": {
"body": {
"method": "request",
"params": {},
"jsonrpc": "2.0"
},
"type": "http",
"method": "POST",
"bodyType": "json"
},
"output": {
"type": "json",
"example": {
"input": {
"type": "jsonrpc",
"methods": [
"hire"
],
"agentCard": "https://api.molty.cash/stonescris6/a2a/.well-known/agent-card.json"
}
}
}
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"input"
],
"properties": {
"input": {
"type": "object",
"required": [
"type",
"method",
"bodyType",
"body"
],
"properties": {
"body": {
"properties": {
"method": {
"type": "string"
},
"params": {
"type": "object"
},
"jsonrpc": {
"type": "string"
}
}
},
"type": {
"type": "string",
"const": "http"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
}
},
"additionalProperties": false
},
"output": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"type": "string"
},
"example": {
"type": "object"
}
}
}
}
}
},
"builder-code": {
"info": {
"a": "bc_977w62bg"
},
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"a": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "App builder code"
},
"s": {
"type": "array",
"items": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$"
},
"description": "Service builder codes"
},
"w": {
"type": "string",
"pattern": "^[a-z0-9_]{1,32}$",
"description": "Wallet builder code"
}
},
"additionalProperties": false
}
}
},
"x402Version": 2
}
] UPTIME
RECENT CHECKS
OVER TIME
All charts share the 30d window selected here. Every series is also served as JSON at /api/v1/services/molty-cash/price, /scores, /volume and /buyers. On-chain volume and distinct buyers are measured over the service's settlement address and are a conservative undercount (only settlements that reach a measured facilitator are counted).
Median across 3 endpoints. Use the selector to isolate one.
COMPLIANCE
11/11 checks pass · grade A- 402 payload captured
- accepts[] array present
- payTo address recoverable
- payTo at accepts[0].payTo (conformant shape)
- payTo is a valid on-chain address
- atomic price declared
- atomic price in a sane range
- asset (token) address declared
- network resolves to CAIP-2
- payment scheme declared
- served over HTTPS
EMBED THIS BADGE
<a href="https://x402-list.com/services/molty-cash?utm_source=badge&utm_medium=referral&utm_campaign=embed"> <img src="https://x402-list.com/badge/molty-cash.svg" alt="molty.cash listed on x402-list" height="28"> </a>
[](https://x402-list.com/services/molty-cash?utm_source=badge&utm_medium=referral&utm_campaign=embed)
<a href="https://x402-list.com/services/molty-cash?utm_source=badge&utm_medium=referral&utm_campaign=embed"> <img src="https://x402-list.com/badge/molty-cash.svg?data=uptime" alt="molty.cash uptime on x402-list" height="28"> </a>