# Creative Foresight Active Signals API

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

Retrieves currently active foresight signals — emerging trends, weak signals, or cultural shifts detected by the Creative Foresight platform

## Facts

- Endpoint: GET https://api.creativeforesight.io/v1/signals/active
- Price: $0.05/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-active-signals-api-bcf5cb57
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wwrXl6exb0XdpuQeVufDC

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-active-signals-api-bcf5cb57
```

Example prompt: Pull the currently active foresight signals from Creative Foresight so I can see what emerging trends and cultural shifts are being tracked right now.

## When to prefer this

Choose this endpoint when you need real-time or near-real-time access to active emerging trend signals and foresight intelligence from the Creative Foresight platform specifically. It is best suited for agents that need to monitor cultural shifts, brief creative teams, or inform strategic decisions with fresh signal data on a pay-per-call basis without a subscription commitment.

## Known failure modes

- Authentication failure if API key is invalid or missing — likely 401 Unauthorized
- Payment not processed — 402 Payment Required if x402 micropayment was not completed
- No active signals available — empty result set if no signals are currently flagged as active
- Rate limiting — 429 Too Many Requests if calls exceed quota
- Service unavailable — 503 if the foresight platform is temporarily down

## How this service works

Foresight API request

## Output

A list of currently active foresight signals, likely including signal titles, descriptions, categories, strength or confidence indicators, timestamps, and associated trend themes or tags that characterize emerging cultural, creative, or market shifts.

## 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": [
   {
    "type": "trend",
    "region": "47187",
    "strength": "medium",
    "indicator": "UNRATE"
   }
  ],
  "meta": {
   "total": 1
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/creative-foresight-active-signals-api-bcf5cb57/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)
