---
title: "Raw Mentions"
method: GET
path: "/x/stocks/v1/stock/{ticker}/mentions"
tags: ["X/Twitter Stocks"]
---

# Raw Mentions

`GET /x/stocks/v1/stock/{ticker}/mentions`

Returns raw tweet rows for a specific ticker within the live raw-data retention window.
**Professional account required.** Free and Hobby accounts cannot use this endpoint.

**Use this endpoint when you need:**
- tweet-level snippets
- original timestamps
- engagement counters on the raw rows

**Notes:**
- Use `from` and `to` for explicit UTC date windows
- Results are ordered newest first and support deterministic `offset` + `limit` pagination
- empty result sets return `200` with `results=[]`

## Path parameters

- `ticker` string, required — Stock ticker symbol (e.g., TSLA, $AAPL, BRK.A)

## Query parameters

- `from` string, date, nullable — Start date in YYYY-MM-DD. Inclusive UTC date.
- `to` string, date, nullable — End date in YYYY-MM-DD. Inclusive UTC date. Omit to use the current UTC date.
- `days` integer — Deprecated v1 compatibility shorthand. Prefer `from` and `to` for reproducible UTC date windows.
- `limit` integer — Maximum number of raw tweet rows to return
- `offset` integer — Number of raw mention rows to skip for offset-based pagination.

## Response `200`

Successful Response

- XRawMentionsResponse — Paginated raw tweet mentions for a single stock ticker.
  - `ticker` string, required — Stock ticker symbol
  - `period_days` integer, required — Lookback window used for the query
  - `count` integer, required — Total number of matching raw rows before limit and offset are applied; only the requested page is returned
  - `results` XRawMentionItem[], required — Raw tweet rows ordered by newest first
    - `tweet_id` string, required — Tweet identifier
    - `author` string, nullable — Public X/Twitter username, if scraped
    - `text_snippet` string, required — Tweet text snippet
    - `created_utc` string, date-time, nullable — Tweet creation time (ISO 8601) when available
    - `likes` integer, required — Number of likes
    - `retweets` integer, required — Number of retweets
    - `views` integer, nullable — Number of views
    - `is_reply` boolean, required — Whether this row comes from a reply tweet
    - `parent_tweet_id` string, nullable — Parent tweet identifier for replies
    - `sentiment_score` number, nullable — Sentiment score (-1 to +1)
    - `sentiment_label` string, nullable — Sentiment label (positive/negative/neutral)

## Other responses

- `401` — Authentication failed
- `403` — Historical data limit exceeded
- `422` — Invalid period or query parameters
- `429` — Rate limit exceeded
- `503` — Database temporarily unavailable
- `504` — Analytics request deadline exceeded

---

[API](https://skmtc.net/adanos/apis/adanos-market-sentiment-api.md) · [All operations](https://skmtc.net/adanos/apis/adanos-market-sentiment-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/adanos/adanos-market-sentiment-api/revisions/351caf64ba81/schema)
