# Oblique Markets Social Media & News Sentiment Analysis

> Oblique Markets Social Media & News Sentiment Analysis is a paid API for AI agents from api.oblique.markets, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Analyzes social media and news sentiment for a given topic, asset, or entity and returns a structured sentiment score

## Facts

- Endpoint: POST https://api.oblique.markets/api/v1/paid/sentiment
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oblique-markets-social-media-news-sentiment-analysis-f28ecd54
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JFm4ox69UN77Ljg2hbcoz

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 oblique-markets-social-media-news-sentiment-analysis-f28ecd54 -d '<json body>'
```

Example prompt: What's the current social media and news sentiment around Bitcoin right now — is the market feeling bullish or bearish?

## When to prefer this

Choose this endpoint when you need real-time sentiment signals derived from social media and news for crypto assets or market topics — especially useful for trading agents, market monitoring bots, or investment research workflows that need qualitative market mood alongside quantitative on-chain data. It complements the sibling on-chain analytics endpoints on the same platform.

## Known failure modes

- Missing or invalid query parameter returns an error response
- Rate limiting or quota exceeded if usage is high
- No data available for obscure or very new assets may return empty or low-confidence results
- Payment failure (x402) if USDC balance is insufficient

## How this service works

Use when an agent needs a quick sentiment read on a passage, a headline or a topic before acting on it. Returns Sentiment label (positive, negative or neutral) with a confidence and a one-line summary for a text passage or a named topic. $0.05.

## Output

Returns a structured sentiment analysis result including a sentiment score, classification (positive/negative/neutral/mixed), and signals derived from social media posts and news articles for the queried topic or asset.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "description": "Text to score directly"
  },
  "topic": {
   "type": "string",
   "description": "Topic to gather and score instead of text"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "input": "text",
  "model": "qwen/qwen3.7-flash",
  "message": "Sentiment analysis via x402 protocol",
  "sentiment": {
   "summary": "The agent economy experienced growth with doubled settlement volume on Base and stable prices.",
   "sentiment": "positive",
   "confidence": 0.85
  },
  "analyzed_at": "2026-09-12T00:09:49.428Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oblique-markets-social-media-news-sentiment-analysis-f28ecd54/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.oblique.markets](https://www.zero.xyz/host/api.oblique.markets/llms.txt)
