# Creative Foresight Observations API

> Creative Foresight Observations API is a paid API for AI agents from api.creativeforesight.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieves foresight observations for a specified indicator and region, enabling trend and signal monitoring for strategic planning.

## Facts

- Endpoint: GET https://api.creativeforesight.io/v1/observations
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/creative-foresight-observations-api-e2529654
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Jb8yGDG4A49VxOcwvIrLr

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 creative-foresight-observations-api-e2529654
```

Example prompt: Pull foresight observations for the 'sustainability' indicator in the 'Europe' region so I can see what emerging signals are being tracked there.

## When to prefer this

Choose this endpoint when you need structured foresight observations tied to a specific indicator and region, particularly for strategic planning, trend monitoring, or market intelligence workflows. It is best suited for use cases requiring regional signal retrieval with a defined thematic focus (indicator). Prefer it over generic news or web search APIs when you specifically need curated foresight-oriented data signals.

## Known failure modes

- Missing required 'indicator' or 'region' query parameters returns a 400 error
- Invalid or unsupported indicator/region combination may return empty results or a 404
- Payment failure or insufficient USDC balance may result in a 402 Payment Required response
- Rate limiting or quota exhaustion may produce a 429 error
- Server-side errors may return a 500 with no data

## How this service works

Foresight API request

## Output

Returns foresight observations associated with the specified indicator and region, likely including trend signals, data points, and contextual insights relevant to strategic or creative foresight planning.

## 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"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "queryParams": {
     "type": "object",
     "required": [
      "indicator",
      "region"
     ],
     "properties": {
      "region": {
       "type": "string"
      },
      "indicator": {
       "type": "string"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {}
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "value": 4.1,
    "period_start": "2025-01-01"
   }
  ],
  "meta": {
   "unit": "percent",
   "region": "47187",
   "indicator": "UNRATE"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/creative-foresight-observations-api-e2529654/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.creativeforesight.io](https://www.zero.xyz/host/api.creativeforesight.io/llms.txt)
