# GoCreative Market Affordability API

> GoCreative Market Affordability API is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-08).

Returns housing or goods market affordability data for a given location or market segment, priced per call via USDC on Base

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/market/affordability/%7Barg%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-08
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-market-affordability-api-b8ab681c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zgs0lII2WI15NIqWvxdLd

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 gocreative-market-affordability-api-b8ab681c
```

Example prompt: What's the housing affordability index for the Austin, TX market right now? I want to know if it's a buyer-friendly market based on official data.

## When to prefer this

Use this endpoint when you need official-source affordability metrics for a real estate or goods market, particularly when you want government-backed data (Census, FRED) and don't want to manage API keys or subscriptions. Best for agents doing housing research, financial planning, or market analysis on a pay-per-call basis.

## Known failure modes

- Invalid or unrecognized market/location argument returns a 400 or 404 error
- Payment of 0.05 USDC not provided triggers a 402 Payment Required response
- Upstream government data source unavailable causes a 503 or timeout
- Argument format mismatch (e.g., wrong region code) returns no data or an error
- Rate limiting or network issues may cause intermittent failures

## How this service works

483,000+ pay-per-call data APIs and free tools built on official sources — finance, company &amp; government data, FRED, Census, crypto, calculators. USDC on Base via x402, native MCP. No API key, no signup.

## Output

Returns affordability metrics for the specified market — likely including affordability index scores, median home price to income ratios, or related cost indicators sourced from official data (Census, FRED, or similar government databases).

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gocreative-market-affordability-api-b8ab681c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
