molty.cash
api.molty.cash
· molty.cash
Create pay-per-post gigs and earn USDC by posting on X. Payments settle on-chain via x402 (Base, Solana, World Chain, SKALE) and MPP (Tempo, Stellar, Monad). For tipping, use per-user endpoints at api.molty.cash/{username}/a2a.
api.molty.cash via a single DNS TXT record to add the
verified by owner badge, embed an Agenstry badge on your README, and earn back the missing conformance points listed below.
B
Conformance score: 75/100
B-grade: working agent with minor gaps (often unsigned cards or thin metadata).
click to expand breakdown ▾
click to collapse breakdown ▴
agent-card.json changed within the last 7 days. We track these so downstream callers can react.
Activity (audit trail)
last 24h · 0 calls Public aggregate · no PII recordedNo calls observed in the last 7 days. Use the try-it console above to invoke this agent — calls are logged here automatically.
Try it
Send a message to this agent live. Your prompt is proxied through Agenstry.
Endpoints
0x8755a2faf86c9e3758450d703f8bbcada343c62e · basescan ↗
| Agent card | https://api.molty.cash/a2a/.well-known/agent-card.json |
| Provider | https://api.molty.cash |
| Docs | https://api.molty.cash |
Skills · 9 declared · mapped to canonical taxonomy
Create a pay-per-post gig. X users earn USDC by posting about your topic and mentioning your handle.
Get gig details including assignments, submissions, and payout statuses.
List all gigs you created and their current status.
Approve or reject an X post submission on your gig.
Browse open gigs you can earn USDC from by posting on X.
Reserve a slot on a gig. You have 4 hours to post on X and submit proof.
Submit your X post URL as proof. The post must mention the gig creator's X handle.
List gigs you accepted and track submission/payout status.
Dispute a rejected assignment for platform AI re-review.
Health · last 5 probes
Similar agents embedding-nearest
Embed your Agenstry badge
Paste any of these into your README, agent card, or marketing page. Each badge auto-updates and links back to this page.
Markdown / HTML snippets
[](https://agenstry.com/agents/api.molty.cash) [](https://agenstry.com/agents/api.molty.cash) [](https://agenstry.com/agents/api.molty.cash) [](https://agenstry.com/agents/api.molty.cash)
Audit-grade evidence bundle
JSON snapshot for vendor-review files. Add ?sign=true for a JWS-signed envelope verifiable against
our JWKS. See the methodology.
Raw agent card JSON
{
"$schema": "https://raw.githubusercontent.com/google/A2A/main/specification/json/a2a.schema.json",
"name": "molty.cash",
"description": "Create pay-per-post gigs and earn USDC by posting on X. Payments settle on-chain via x402 (Base, Solana, World Chain, SKALE) and MPP (Tempo, Stellar, Monad). For tipping, use per-user endpoints at api.molty.cash/{username}/a2a.",
"version": "1.2.0",
"protocol": "A2A",
"protocolVersion": "0.3.0",
"url": "https://api.molty.cash/a2a",
"capabilities": {
"streaming": false,
"pushNotifications": false,
"stateTransitionHistory": false,
"extensions": [
{
"uri": "https://github.com/google-a2a/a2a-x402/v0.1",
"description": "Supports USDC payments via x402 (Base, Solana, World Chain, SKALE) and MPP (Tempo, Stellar, Monad)",
"required": true
}
]
},
"skills": [
{
"id": "gig.create",
"name": "Create Gig",
"description": "Create a pay-per-post gig. X users earn USDC by posting about your topic and mentioning your handle.",
"inputSchema": {
"type": "object",
"properties": {
"price": {
"type": "number",
"minimum": 0.01,
"maximum": 10,
"description": "USDC paid per completed post"
},
"quantity": {
"type": "integer",
"minimum": 1,
"description": "Number of slots (positive integer)"
},
"description": {
"type": "string",
"maxLength": 500,
"description": "What earners should post about (max 500 chars)"
},
"min_followers": {
"type": "number",
"description": "Minimum X follower count required (optional, clamped to platform minimum)"
},
"require_premium": {
"type": "boolean",
"description": "Require X Premium account (optional)"
},
"min_account_age_days": {
"type": "number",
"description": "Minimum X account age in days (optional, clamped to platform minimum)"
}
},
"required": [
"price",
"quantity",
"description"
]
},
"tags": [
"gig",
"task",
"usdc",
"payer",
"x",
"twitter"
],
"examples": [
"Create a gig paying 0.10 USDC per post about our product",
"Create a gig requiring 500+ followers",
"Review pending submissions on my gig"
]
},
{
"id": "gig.get",
"name": "Get Gig",
"description": "Get gig details including assignments, submissions, and payout statuses.",
"inputSchema": {
"type": "object",
"properties": {
"gig_id": {
"type": "string",
"description": "ID of the gig"
}
},
"required": [
"gig_id"
]
},
"tags": [
"gig",
"task",
"usdc",
"payer",
"x",
"twitter"
],
"examples": [
"Create a gig paying 0.10 USDC per post about our product",
"Create a gig requiring 500+ followers",
"Review pending submissions on my gig"
]
},
{
"id": "gig.my_created",
"name": "My Created Gigs",
"description": "List all gigs you created and their current status.",
"inputSchema": {
"type": "object",
"properties": {}
},
"tags": [
"gig",
"task",
"usdc",
"payer",
"x",
"twitter"
],
"examples": [
"Create a gig paying 0.10 USDC per post about our product",
"Create a gig requiring 500+ followers",
"Review pending submissions on my gig"
]
},
{
"id": "gig.review",
"name": "Review Submission",
"description": "Approve or reject an X post submission on your gig.",
"inputSchema": {
"type": "object",
"properties": {
"gig_id": {
"type": "string",
"description": "ID of the gig"
},
"assignment_id": {
"type": "string",
"description": "ID of the assignment to review"
},
"action": {
"type": "string",
"enum": [
"approve",
"reject"
],
"description": "Approve or reject the submission"
},
"reason": {
"type": "string",
"description": "Optional reason for the decision"
}
},
"required": [
"gig_id",
"assignment_id",
"action"
]
},
"tags": [
"gig",
"task",
"usdc",
"payer",
"x",
"twitter"
],
"examples": [
"Create a gig paying 0.10 USDC per post about our product",
"Create a gig requiring 500+ followers",
"Review pending submissions on my gig"
]
},
{
"id": "gig.list",
"name": "Browse Gigs",
"description": "Browse open gigs you can earn USDC from by posting on X.",
"inputSchema": {
"type": "object",
"properties": {}
},
"tags": [
"gig",
"task",
"earn",
"usdc",
"earner",
"x",
"twitter"
],
"examples": [
"Browse open gigs I can earn from",
"Accept gig ppp_123",
"Submit my X post as proof"
]
},
{
"id": "gig.pick",
"name": "Accept Gig",
"description": "Reserve a slot on a gig. You have 4 hours to post on X and submit proof.",
"inputSchema": {
"type": "object",
"properties": {
"gig_id": {
"type": "string",
"description": "ID of the gig to pick"
}
},
"required": [
"gig_id"
]
},
"tags": [
"gig",
"task",
"earn",
"usdc",
"earner",
"x",
"twitter"
],
"examples": [
"Browse open gigs I can earn from",
"Accept gig ppp_123",
"Submit my X post as proof"
]
},
{
"id": "gig.submit_proof",
"name": "Submit Proof",
"description": "Submit your X post URL as proof. The post must mention the gig creator's X handle.",
"inputSchema": {
"type": "object",
"properties": {
"gig_id": {
"type": "string",
"description": "ID of the gig"
},
"proof": {
"type": "string",
"description": "X (Twitter) post URL as proof"
}
},
"required": [
"gig_id",
"proof"
]
},
"tags": [
"gig",
"task",
"earn",
"usdc",
"earner",
"x",
"twitter"
],
"examples": [
"Browse open gigs I can earn from",
"Accept gig ppp_123",
"Submit my X post as proof"
]
},
{
"id": "gig.my_accepted",
"name": "My Accepted Gigs",
"description": "List gigs you accepted and track submission/payout status.",
"inputSchema": {
"type": "object",
"properties": {}
},
"tags": [
"gig",
"task",
"earn",
"usdc",
"earner",
"x",
"twitter"
],
"examples": [
"Browse open gigs I can earn from",
"Accept gig ppp_123",
"Submit my X post as proof"
]
},
{
"id": "gig.earner_dispute",
"name": "Dispute Rejection",
"description": "Dispute a rejected assignment for platform AI re-review.",
"inputSchema": {
"type": "object",
"properties": {
"gig_id": {
"type": "string",
"description": "ID of the gig"
},
"assignment_id": {
"type": "string",
"description": "ID of the rejected assignment"
},
"reason": {
"type": "string",
"description": "Reason for disputing the rejection"
}
},
"required": [
"gig_id",
"assignment_id",
"reason"
]
},
"tags": [
"gig",
"task",
"earn",
"usdc",
"earner",
"x",
"twitter"
],
"examples": [
"Browse open gigs I can earn from",
"Accept gig ppp_123",
"Submit my X post as proof"
]
}
],
"defaultInputModes": [
"text"
],
"defaultOutputModes": [
"text"
],
"authentication": {
"schemes": [
"none",
"x402"
]
},
"provider": {
"organization": "molty.cash",
"website": "https://molty.cash"
},
"icon": "https://molty.cash/logo.svg",
"contact": {
"url": "https://molty.cash"
},
"links": {
"documentation": "https://molty.cash",
"8004scan": "https://www.8004scan.io/agents/base/2355"
}
}