{
  "x402Version": 2,
  "id": 2455,
  "slug": "2455",
  "resource": "https://gdelt.use.x402atlas.com/search",
  "description": "Global news article search by GDELT — normalized fulltext search across worldwide media (query syntax: phrases, OR, sourcecountry, theme, tone) returned as a clean snake_case envelope.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x8d64A4834e262d96d1264e8900b5a4F1405b8982",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "5000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "eip155:137",
      "payTo": "0x8d64A4834e262d96d1264e8900b5a4F1405b8982",
      "asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
      "amount": "5000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "eip155:42161",
      "payTo": "0x8d64A4834e262d96d1264e8900b5a4F1405b8982",
      "asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
      "amount": "5000",
      "maxTimeoutSeconds": 300
    },
    {
      "scheme": "exact",
      "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
      "payTo": "ASt6xvRyQ7ntERsmcYVMdLqZvz1GEN8Fzexzq62tXrNQ",
      "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
      "amount": "5000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "category": "news",
      "info": {
        "input": {
          "method": "GET",
          "queryParams": {
            "maxrecords": 75,
            "query": "\"supply chain\" (drought OR flood)",
            "sort": "HybridRel",
            "timespan": "3d"
          },
          "type": "http"
        },
        "output": {
          "example": {
            "articles": [
              {
                "domain": "reuters.com",
                "language": "English",
                "seen_at": "2026-07-01T09:15:00Z",
                "source_country": "United States",
                "title": "Drought disrupts supply chains",
                "url": "https://reuters.com/x"
              }
            ],
            "attribution": "Data from The GDELT Project (https://www.gdeltproject.org)",
            "count": 1,
            "queried_at": "2026-07-01T12:00:00Z",
            "query": "\"supply chain\" (drought OR flood)",
            "timespan": "3d"
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "method": {
                "enum": [
                  "GET"
                ],
                "type": "string"
              },
              "queryParams": {
                "properties": {
                  "maxrecords": {
                    "default": 75,
                    "description": "Number of articles to return, capped at 250",
                    "maximum": 250,
                    "minimum": 1,
                    "type": "integer"
                  },
                  "query": {
                    "description": "GDELT query syntax — phrases, OR, -exclude, domain:, sourcelang:, sourcecountry:, theme:, tone>/<, near",
                    "maxLength": 1024,
                    "type": "string"
                  },
                  "sort": {
                    "default": "HybridRel",
                    "description": "Result ordering",
                    "enum": [
                      "DateDesc",
                      "DateAsc",
                      "ToneDesc",
                      "ToneAsc",
                      "HybridRel"
                    ],
                    "type": "string"
                  },
                  "timespan": {
                    "default": "3d",
                    "description": "Relative window like 15min, 1h, 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": {
                  "articles": {
                    "items": {
                      "properties": {
                        "domain": {
                          "type": "string"
                        },
                        "language": {
                          "type": "string"
                        },
                        "seen_at": {
                          "format": "date-time",
                          "type": "string"
                        },
                        "social_image": {
                          "description": "Article thumbnail URL, when GDELT has one",
                          "type": "string"
                        },
                        "source_country": {
                          "type": "string"
                        },
                        "title": {
                          "type": "string"
                        },
                        "url": {
                          "type": "string"
                        }
                      },
                      "required": [
                        "url",
                        "title",
                        "seen_at",
                        "domain",
                        "language",
                        "source_country"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "attribution": {
                    "description": "Mandatory GDELT licence credit line",
                    "type": "string"
                  },
                  "count": {
                    "description": "Number of articles returned",
                    "type": "integer"
                  },
                  "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"
                  },
                  "queried_at": {
                    "format": "date-time",
                    "type": "string"
                  },
                  "query": {
                    "description": "Echo of the request query",
                    "type": "string"
                  },
                  "timespan": {
                    "description": "Echo of the effective timespan",
                    "type": "string"
                  }
                },
                "required": [
                  "query",
                  "queried_at",
                  "timespan",
                  "count",
                  "articles",
                  "attribution"
                ],
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      },
      "tags": [
        "news",
        "gdelt",
        "search",
        "articles",
        "media",
        "osint",
        "global"
      ]
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "gdelt.use.x402atlas.com",
  "lastUpdated": "2026-09-18T07:50:57.983Z",
  "quality": {
    "calls30d": 8,
    "uniquePayers30d": 6,
    "lastCalledAt": "2026-09-18T07:50:57.835Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "gdelt.use.x402atlas.com",
    "manifest_name": "gdelt.use.x402atlas.com",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}