# AI Revenue Price Floor Calculator

> AI Revenue Price Floor Calculator is a paid API for AI agents from unsaid-archive.vandurmedries.chatgpt.site, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Calculates recommended service price floors and tier pricing based on cost, margin, and income goals

## Facts

- Endpoint: GET https://unsaid-archive.vandurmedries.chatgpt.site/api/x402/price-floor
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ai-revenue-price-floor-calculator-77892588
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SMS5Ai38CWUr3eTIahvmN

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 ai-revenue-price-floor-calculator-77892588
```

Example prompt: What should I charge for my consulting package? My hourly cost is $50, each project takes 4 hours to deliver, I want a 60% margin, and my monthly income goal is $6000 — give me a recommended price floor and tier breakdown.

## When to prefer this

Use this endpoint when you need a fast, formula-driven price floor and tier recommendation based on concrete cost and income inputs. It is best suited for freelancers, consultants, or agencies productizing services and wanting to sanity-check pricing math without a full financial modeling tool. Prefer it over generic calculators when you need structured tier output (pilot/core/premium) ready for agent workflows.

## Known failure modes

- Missing required query parameters (hourlyCost, deliveryHours, targetMarginPct, monthlyIncomeGoal) returns a 400 error
- targetMarginPct outside 10–90 range rejected with validation error
- hourlyCost below 1 or deliveryHours below 0.1 rejected as below minimum
- Payment of $0.02 USDC not received results in 402 Payment Required before computation occurs
- Non-numeric values for numeric fields cause schema validation failure

## How this service works

Five agent-ready resources sold per call through x402, including Senti: a persistent webhook observer that survives the agent session.

## Output

Returns a JSON object with recommended price floor (e.g. $550), pricing tier suggestions (pilot, core, premium in dollars), number of sales needed to hit the income goal, and number of sales possible given monthly capacity hours.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "hourlyCost",
      "deliveryHours",
      "targetMarginPct",
      "monthlyIncomeGoal"
     ],
     "properties": {
      "hourlyCost": {
       "type": "number",
       "example": 50,
       "minimum": 1
      },
      "deliveryHours": {
       "type": "number",
       "example": 4,
       "minimum": 0.1
      },
      "targetMarginPct": {
       "type": "number",
       "example": 60,
       "maximum": 90,
       "minimum": 10
      },
      "toolCostPerSale": {
       "type": "number",
       "example": 20,
       "minimum": 0
      },
      "monthlyIncomeGoal": {
       "type": "number",
       "example": 6000,
       "minimum": 1
      },
      "monthlyCapacityHours": {
       "type": "number",
       "example": 100,
       "minimum": 1
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tiers": {
   "core": 550,
   "pilot": 450,
   "premium": 900
  },
  "capacitySales": 25,
  "recommendedFloor": 550,
  "salesForIncomeGoal": 19
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ai-revenue-price-floor-calculator-77892588/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from unsaid-archive.vandurmedries.chatgpt.site](https://www.zero.xyz/host/unsaid-archive.vandurmedries.chatgpt.site/llms.txt)
