# GoCreative Markets Data API

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

Fetches real-time or historical market data for a specified market symbol via a pay-per-call endpoint priced at $0.003 USDC.

## Facts

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

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-markets-data-api-d4a8b5ae
```

Example prompt: Pull the current market data for AAPL from GoCreative's markets endpoint — it's pay-per-call at $0.003 USDC per request, no API key needed.

## When to prefer this

Choose this endpoint when you need quick, low-cost market data lookups without an API key or subscription — ideal for AI agents that need to pay per call in USDC on Base via x402 protocol, and want access to finance data sourced from official providers.

## Known failure modes

- Invalid or unrecognized market symbol returns an error
- Payment failure if USDC balance is insufficient
- Rate limiting or access denial if x402 payment header is missing
- Symbol not found for less common or delisted instruments
- Stale or unavailable data for illiquid markets

## 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 market data for the specified symbol, likely including price, volume, and other trading statistics sourced from official financial data providers.

## 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-markets-data-api-d4a8b5ae/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)
