News attention & tone timeline by GDELT — coverage-volume and average-tone time series for
News attention & tone timeline by GDELT — coverage-volume and average-tone time series for any query, merged from GDELT's two timeline feeds into one series.
20000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-15
updated
Provider
gdelt.use.x402atlas.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x8d64A4834e262d96d1264e8900b5a4F1405b8982",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:137",
"payTo": "0x8d64A4834e262d96d1264e8900b5a4F1405b8982",
"asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
"amount": "20000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:42161",
"payTo": "0x8d64A4834e262d96d1264e8900b5a4F1405b8982",
"asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
"amount": "20000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "ASt6xvRyQ7ntERsmcYVMdLqZvz1GEN8Fzexzq62tXrNQ",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"category": "news",
"info": {
"input": {
"method": "GET",
"queryParams": {
"query": "bitcoin",
"timelinesmooth": 7,
"timespan": "3m"
},
"type": "http"
},
"output": {
"example": {
"attribution": "Data from The GDELT Project (https://www.gdeltproject.org)",
"partial": false,
"queried_at": "2026-07-01T12:00:00Z",
"query": "bitcoin",
"series": [
{
"date": "2026-04-01T00:00:00Z",
"tone": -1.8,
"volume_pct": 0.42
}
],
"timespan": "3m",
"warnings": []
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"query": {
"description": "GDELT query syntax (see /gdelt/search)",
"type": "string"
},
"timelinesmooth": {
"description": "Moving-average window over the series (optional)",
"maximum": 30,
"minimum": 1,
"type": "integer"
},
"timespan": {
"default": "3m",
"description": "Relative window like 7d, 2w, 3m; capped at 90 days",
"pattern": "^[0-9]+(min|h|d|w|m)$",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"attribution": {
"description": "Mandatory GDELT licence credit line",
"type": "string"
},
"note": {
"description": "Present only on a sample response (empty/omitted query): a hint to pass a real query. The paid request ran; no upstream call was made.",
"type": "string"
},
"partial": {
"description": "True when one feed (volume or tone) was unavailable and its metric is null on every point — distinguishes a degraded answer from genuinely missing data",
"type": "boolean"
},
"queried_at": {
"format": "date-time",
"type": "string"
},
"query": {
"description": "Echo of the request query",
"type": "string"
},
"series": {
"items": {
"properties": {
"date": {
"format": "date-time",
"type": "string"
},
"tone": {
"description": "Average article tone on this date; null if the tone feed had no value here",
"type": [
"number",
"null"
]
},
"volume_pct": {
"description": "Share of monitored coverage matching the query on this date; null if the volume feed had no value here",
"type": [
"number",
"null"
]
}
},
"required": [
"date",
"volume_pct",
"tone"
],
"type": "object"
},
"type": "array"
},
"timespan": {
"description": "Echo of the effective timespan",
"type": "string"
},
"warnings": {
"description": "Human-readable notes on any degraded feed, e.g. \"tone feed unavailable\"; empty when the answer is complete",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"query",
"queried_at",
"timespan",
"series",
"partial",
"warnings",
"attribution"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
},
"tags": [
"news",
"gdelt",
"timeline",
"tone",
"sentiment",
"volume",
"trend",
"signal"
]
}
}Use it
curl
curl "https://gdelt.use.x402atlas.com/timeline" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://gdelt.use.x402atlas.com/timeline");
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://gdelt.use.x402atlas.com/timeline")
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/2456.json, and this resource appears in /discovery/resources and /discovery/search.