# Creative Foresight Signals API

> Creative Foresight 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 trend signals and foresight data for creative and strategic planning

## Facts

- Endpoint: GET https://api.creativeforesight.io/v1/signals
- 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-signals-api-613258c4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0nD19-fmU1AHQiUl9duRN

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-signals-api-613258c4
```

Example prompt: Can you pull the latest foresight signals from Creative Foresight right now — I need emerging trend intelligence to inform a creative strategy brief I'm putting together?

## When to prefer this

Choose this endpoint when you need trend intelligence, foresight signals, or emerging pattern data for creative strategy, innovation planning, or cultural analysis. It is particularly suited for agents helping with creative briefs, strategic planning, or innovation scouting where early signal detection is valuable. Prefer this over general web search when you need structured, curated trend intelligence rather than raw search results.

## Known failure modes

- Payment not processed — 402 response if USDC payment fails or is missing
- Rate limiting if too many calls are made in quick succession
- Empty or sparse signal set if no new signals have been indexed recently
- Authentication or authorization errors if API key is invalid or missing
- Timeout if the signal aggregation pipeline is slow

## How this service works

Foresight API request

## Output

Returns a set of trend signals and foresight data points representing emerging patterns, cultural shifts, or early indicators relevant to creative and strategic planning, likely including signal descriptions, categories, strength indicators, and recency 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"
    },
    "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-signals-api-613258c4/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)
