# GoCreative News Headlines API

> GoCreative News Headlines 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-15).

Fetches current news headlines for a given topic or keyword via a pay-per-call endpoint using x402 micropayments

## Facts

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

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-news-headlines-api-63d86c7a
```

Example prompt: Can you pull the latest news headlines about Tesla earnings using GoCreative's news API?

## When to prefer this

Choose this endpoint when an AI agent needs to quickly retrieve current news headlines on a specific topic without requiring an API key or signup, and can pay $0.01 USDC per call via x402 on Base. Particularly useful for agentic workflows that require real-time news context as part of research, monitoring, or summarization tasks.

## Known failure modes

- Missing or empty input query parameter returns a 400 bad request
- No headlines found for a very obscure or misspelled topic returns empty or null result
- Payment not completed or insufficient USDC balance results in 402 Payment Required
- Network or upstream news source unavailability returns a 5xx error
- Invalid path parameter format results in routing error

## 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 current news headlines relevant to the provided topic or keyword argument, sourced from news feeds via GoCreative's data platform. Costs $0.01 USDC per call via x402 micropayment on Base.

## 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-news-headlines-api-63d86c7a/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)
