mirrored listing x402 eip155:8453

Financial news with sentiment analysis from Marketaux

Financial news with sentiment analysis from Marketaux. Per-symbol sentiment aggregation.

Do you run market.memoryapi.org? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
5000 (raw units)
price
2
calls / 30d
2
unique payers
2026-09-08
updated

Provider

market.memoryapi.org · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x24FAcafEB49b4e3FACF0B3e69604A2F4640c9bf2",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "5000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "description": "Financial news sentiment from Marketaux. Analyzes news articles for specified symbols (default: AAPL,MSFT,NVDA) and provides BULLISH/BEARISH/NEUTRAL labels based on aggregated sentiment scores.",
      "iconUrl": "https://memoryapi.org/icon.png",
      "input": {
        "method": "GET",
        "queryParams": {
          "limit": "10",
          "sentiment": "all",
          "symbols": "AAPL,MSFT,NVDA"
        },
        "schema": {
          "properties": {
            "limit": {
              "description": "Number of articles (default: 10, max: 25)",
              "type": "integer"
            },
            "sentiment": {
              "description": "Filter: positive|negative|all (default: all)",
              "type": "string"
            },
            "symbols": {
              "description": "Comma-separated tickers (default: AAPL,MSFT,NVDA)",
              "type": "string"
            }
          },
          "required": []
        },
        "type": "http"
      },
      "output": {
        "example": {
          "article_count": 10,
          "articles": [],
          "by_symbol": [
            {
              "article_count": 4,
              "avg_sentiment": 0.35,
              "sentiment_label": "BULLISH",
              "symbol": "AAPL"
            }
          ],
          "source": "Marketaux",
          "success": true,
          "symbols": "AAPL,MSFT,NVDA"
        }
      },
      "serviceName": "MemoryAPI Market",
      "tags": [
        "finance",
        "stocks",
        "crypto",
        "market"
      ]
    },
    "schema": {
      "properties": {
        "input": {
          "properties": {
            "method": {
              "enum": [
                "GET"
              ],
              "type": "string"
            }
          },
          "required": [
            "method"
          ]
        }
      }
    }
  }
}

Use it

curl

curl "https://market.memoryapi.org/x402/market/news_sentiment"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://market.memoryapi.org/x402/market/news_sentiment");
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://market.memoryapi.org/x402/market/news_sentiment")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/14332.json, and this resource appears in /discovery/resources and /discovery/search.