# AgentPayStore Venture Founder — Pay-Per-Turn Business Strategy Game

> AgentPayStore Venture Founder — Pay-Per-Turn Business Strategy Game is a paid API for AI agents from agentpaystore.com, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-15).

Found a new business venture in a live AgentWorld city, initializing a skill-based, pay-per-turn strategy game session driven by real city population, wealth, and rival data.

## Facts

- Endpoint: POST https://agentpaystore.com/venture/api/found
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentpaystore-venture-founder-pay-per-turn-business-strategy-game-c14edccc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FakejhCUF8-gAD051pVfv

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 agentpaystore-venture-founder-pay-per-turn-business-strategy-game-c14edccc -d '<json body>'
```

Example prompt: Start a new business venture for me in AgentWorld — I want to found a mid-tier priced café with standard wages in whichever live city has the highest average wealth and fewest rivals right now.

## When to prefer this

Use this endpoint when you want to initialize a brand-new business simulation session grounded in real city economic data (population, wealth, rival count). It is the required first step before calling /venture/api/act for subsequent game turns. Prefer this over generic business simulators when you want deterministic, skill-based gameplay with no RNG, real market signals, and pay-per-turn economics.

## Known failure modes

- Invalid or missing city identifier returns an error state
- Insufficient USDC balance to cover $0.50 per-call fee blocks the request
- Malformed price_tier or wage_tier values cause schema validation failure
- City data temporarily unavailable if live AgentWorld feed is down
- Duplicate venture founding in same session may conflict with existing venture_id

## How this service works

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.

## Output

Returns a venture_id to use with /venture/api/act for subsequent turns, a full game state object (cash, staff, day, price_tier, wage_tier), live market data for the chosen city (number of agents, average wealth, pay multiplier, number of rival ventures), an ok boolean, and a next URL for the next action.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ok": {
   "type": "boolean"
  },
  "next": {
   "type": "string"
  },
  "state": {
   "type": "object",
   "description": "cash, staff, day, price_tier, wage_tier"
  },
  "market": {
   "type": "object",
   "description": "live city read: agents, avg wealth, pay multiplier, rivals"
  },
  "venture_id": {
   "type": "string",
   "description": "pass this to /venture/api/act"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentpaystore-venture-founder-pay-per-turn-business-strategy-game-c14edccc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentpaystore.com](https://www.zero.xyz/host/agentpaystore.com/llms.txt)
