# Concierge Agent News Article Unlock

> Concierge Agent News Article Unlock is a paid API for AI agents from conc-exe.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Unlocks and retrieves market or DeFi news article content by URL, headline, and publisher via pay-per-call

## Facts

- Endpoint: POST https://conc-exe.xyz/api/news-open
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/concierge-agent-news-article-unlock-588da837
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zIerLk6_6gC8E0jL21urW

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 concierge-agent-news-article-unlock-588da837 -d '<json body>'
```

Example prompt: Can you unlock and pull the full content of this BBC article about DeFi markets — the headline is 'DeFi Surges as Liquidity Returns' and the URL is https://www.bbc.com/news/defi-surges-example?

## When to prefer this

Use this endpoint when an AI agent needs to fetch or unlock the content of a specific market intelligence or DeFi news article and has the article URL, headline, and publisher name available. Prefer this over general web scrapers when the content requires a micropayment unlock via x402 and is in the crypto/DeFi/financial news domain.

## Known failure modes

- Invalid or unreachable URL returns error or unlocked:false
- Missing required fields (url/title/source) cause validation errors
- Payment failure via x402 prevents content unlock
- Article not indexed or unsupported publisher results in empty or null content
- Non-http/https URL scheme rejected by input validation

## How this service works

Open one news article (full story link)

## Output

Returns a JSON object confirming the article was unlocked, along with the article URL, title, source publisher name, and an 'unlocked: true' status flag. May include full or summarized article content upon successful payment.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "Article URL (http/https)"
  },
  "title": {
   "type": "string",
   "description": "Headline title"
  },
  "source": {
   "type": "string",
   "description": "Publisher name"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://www.bbc.com/news/example",
  "title": "Example",
  "source": "BBC",
  "unlocked": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/concierge-agent-news-article-unlock-588da837/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from conc-exe.xyz](https://www.zero.xyz/host/conc-exe.xyz/llms.txt)
