Open one news article (full story link)
Open one news article (full story link)
100000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-26
updated
Provider
conc-exe.xyz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xb85c83cc448edca8eb724f5d79b523faff9375a7",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "100000",
"maxTimeoutSeconds": 120
},
{
"scheme": "exact",
"network": "eip155:42161",
"payTo": "0x94db8343ec6839131c082126ea1e723e30c256f3",
"asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
"amount": "100000",
"maxTimeoutSeconds": 120
},
{
"scheme": "exact",
"network": "eip155:4663",
"payTo": "0x94db8343ec6839131c082126ea1e723e30c256f3",
"asset": "0x5fc5360D0400a0Fd4f2af552ADD042D716F1d168",
"amount": "100000",
"maxTimeoutSeconds": 120
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "9uiwHcDNYg8rbPDRaJBfMHVo8f8CAgCCZzz1JB6XyEFN",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "100000",
"maxTimeoutSeconds": 120
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "9uiwHcDNYg8rbPDRaJBfMHVo8f8CAgCCZzz1JB6XyEFN",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "100000",
"maxTimeoutSeconds": 120
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "9uiwHcDNYg8rbPDRaJBfMHVo8f8CAgCCZzz1JB6XyEFN",
"asset": "F2bnJW1z55UQ9ZqGX5RwYQfvNJrd23n66eyBV5QZpump",
"amount": "28478437755",
"maxTimeoutSeconds": 120
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"source": "BBC",
"title": "Example headline",
"url": "https://www.bbc.com/news/example"
},
"bodyType": "json",
"headers": {
"Content-Type": "application/json"
},
"method": "POST",
"type": "http"
},
"output": {
"example": {
"source": "BBC",
"title": "Example",
"unlocked": true,
"url": "https://www.bbc.com/news/example"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"source": {
"description": "Publisher name",
"type": "string"
},
"title": {
"description": "Headline title",
"type": "string"
},
"url": {
"description": "Article URL (http/https)",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"bodyType": {
"const": "json"
},
"headers": {
"type": "object"
},
"method": {
"const": "POST"
},
"type": {
"const": "http"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"source": {
"type": "string"
},
"title": {
"type": "string"
},
"unlocked": {
"type": "boolean"
},
"url": {
"description": "Canonical article URL",
"type": "string"
}
},
"required": [
"url",
"unlocked"
],
"type": "object"
},
"example": {
"additionalProperties": false,
"properties": {
"source": {
"type": "string"
},
"title": {
"type": "string"
},
"unlocked": {
"type": "boolean"
},
"url": {
"description": "Canonical article URL",
"type": "string"
}
},
"required": [
"url",
"unlocked"
],
"type": "object"
},
"type": {
"const": "json"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
}
}
}Use it
curl
curl "https://conc-exe.xyz/api/news-open" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://conc-exe.xyz/api/news-open");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://conc-exe.xyz/api/news-open")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3041.json, and this resource appears in /discovery/resources and /discovery/search.