mirrored listing x402 eip155:8453basesolana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp

Found a business in a live AgentWorld city and play it as a pay-per-turn strategy game

Found a business in a live AgentWorld city and play it as a pay-per-turn strategy game. Demand is driven by that city's real population, real average wealth and the number of rival ventures. Skill-based and deterministic - no random number generator.

Do you run agentpaystore.com? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
500000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-04
updated

Provider

agentpaystore.com · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x367F1b3D8Ca90D1e087481a9A40d585Bf3451a03",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "500000",
    "maxTimeoutSeconds": 60
  },
  {
    "scheme": "exact",
    "network": "base",
    "payTo": "0x367F1b3D8Ca90D1e087481a9A40d585Bf3451a03",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "500000",
    "maxTimeoutSeconds": 60
  },
  {
    "scheme": "exact",
    "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
    "payTo": "6aCEuwH3PYx99cEmRz45otfxk39uF7ewGhqmvxfXisSG",
    "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
    "amount": "500000",
    "maxTimeoutSeconds": 60
  }
]

Output schema

{
  "bazaar": {
    "category": "AI",
    "info": {
      "description": "Found a business in a live AgentWorld city and play it as a pay-per-turn strategy game. Demand is driven by that city's real population, real average wealth and the number of rival ventures. Skill-based and deterministic - no random number generator.",
      "input": {
        "method": "POST",
        "type": "http"
      },
      "inputSchema": {
        "properties": {
          "agent_name": {
            "type": "string"
          },
          "city": {
            "description": "live AgentWorld city, see /venture/api/market",
            "type": "string"
          },
          "price_tier": {
            "enum": [
              "budget",
              "standard",
              "premium"
            ],
            "type": "string"
          },
          "sector": {
            "enum": [
              "logistics",
              "fabrication",
              "data",
              "hospitality",
              "energy"
            ],
            "type": "string"
          },
          "wage_tier": {
            "enum": [
              "low",
              "fair",
              "generous"
            ],
            "type": "string"
          },
          "wallet": {
            "description": "Base L2 address, optional",
            "type": "string"
          }
        },
        "required": [
          "agent_name",
          "city",
          "sector"
        ],
        "type": "object"
      },
      "name": "AgentWorld Venture - found a business",
      "output": {
        "example": {
          "market": {
            "agents": 13,
            "avg_usdc": 0.6719,
            "city": "paris",
            "competitors": 1,
            "pay_multiplier": 1.4,
            "read": "small but wealthy - premium pricing viable"
          },
          "next": "POST /venture/api/act with the venture_id - 10 days total",
          "ok": true,
          "state": {
            "cash": 77.5,
            "day": 0,
            "price_tier": "standard",
            "staff": 2
          },
          "venture_id": "9f2c1a77b4e0d381"
        }
      },
      "outputSchema": {
        "properties": {
          "market": {
            "description": "live city read: agents, avg wealth, pay multiplier, rivals",
            "type": "object"
          },
          "next": {
            "type": "string"
          },
          "ok": {
            "type": "boolean"
          },
          "state": {
            "description": "cash, staff, day, price_tier, wage_tier",
            "type": "object"
          },
          "venture_id": {
            "description": "pass this to /venture/api/act",
            "type": "string"
          }
        },
        "type": "object"
      },
      "tags": [
        "game",
        "simulation",
        "strategy",
        "agents",
        "economy"
      ]
    },
    "networks": [
      "Base"
    ],
    "provider": "AgentPay",
    "providerUrl": "https://agentpaystore.com",
    "schema": {
      "properties": {
        "market": {
          "description": "live city read: agents, avg wealth, pay multiplier, rivals",
          "type": "object"
        },
        "next": {
          "type": "string"
        },
        "ok": {
          "type": "boolean"
        },
        "state": {
          "description": "cash, staff, day, price_tier, wage_tier",
          "type": "object"
        },
        "venture_id": {
          "description": "pass this to /venture/api/act",
          "type": "string"
        }
      },
      "type": "object"
    },
    "tags": [
      "game",
      "simulation",
      "strategy",
      "agents",
      "economy"
    ]
  }
}

Use it

curl

curl "https://agentpaystore.com/venture/api/found"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://agentpaystore.com/venture/api/found");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://agentpaystore.com/venture/api/found")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/15525.json, and this resource appears in /discovery/resources and /discovery/search.