# GoCreative Predict Events API

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

Retrieves predicted or upcoming events data for a given argument/entity using official data sources, priced at $0.01 USDC per call.

## Facts

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

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-predict-events-api-f076a86a
```

Example prompt: What events are predicted for AAPL? Use the GoCreative predict events endpoint with the input 'AAPL' to get upcoming or forecast event data.

## When to prefer this

Use this endpoint when you need event prediction or scheduled event lookup for a specific entity (ticker, company, economic indicator) without requiring an API key or subscription, and when pay-per-call USDC micropayment via x402 is acceptable. Prefer over alternatives when you need data from official sources and want no upfront commitment.

## Known failure modes

- Missing required 'input' query parameter returns validation error
- Unknown or invalid argument returns empty results or 404
- Payment not provided or insufficient USDC returns 402 Payment Required
- Malformed path parameter returns 400 Bad Request
- Data source temporarily unavailable returns 503

## 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 predicted or scheduled event data for the given input argument, sourced from official finance, government, or company data repositories. Likely includes event names, dates, types, and relevant metadata.

## 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-predict-events-api-f076a86a/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)
