# Creative Foresight Curated Briefing Lookup

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

Retrieves a curated public foresight briefing by its slug identifier from the Creative Foresight API

## Facts

- Endpoint: GET https://api.creativeforesight.io/v1/briefings/public/:slug
- Price: $0.1/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-curated-briefing-lookup-1f52b359
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AnI_BnyQPDV-S2m4b9Q_e

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-curated-briefing-lookup-1f52b359
```

Example prompt: Can you pull up the Creative Foresight public briefing for 'future-of-work-2025' and summarize what it covers?

## When to prefer this

Use this endpoint when you know the exact slug of a specific Creative Foresight public briefing and need to retrieve its full curated content. It is ideal for fetching a known briefing by identifier rather than searching or listing briefings. Prefer this when integrating Creative Foresight content into workflows, digests, or research pipelines where the slug is available.

## Known failure modes

- Slug not found (404) — the specified briefing slug does not exist or is not public
- Payment required (402) — x402 payment of $0.10 USDC not fulfilled before request
- Invalid slug format — malformed path parameter causes a 400 error
- Service unavailable (503) — temporary API downtime
- Empty or stub briefing — slug exists but content is minimal or placeholder

## How this service works

Foresight API curated briefing

## Output

Returns the full content of a curated public foresight briefing, likely including a title, body text, trend analysis, strategic insights, and associated metadata such as publication date and topic tags, identified by the provided slug.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/creative-foresight-curated-briefing-lookup-1f52b359/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)
