# Stocktwits — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Discover which stocks are generating the most buzz on Stocktwits by accessing real-time trending symbols along with company names, trending scores, current price data, and community sentiment summaries. Stay ahead of market conversations by monitoring what the investing community is actively discussing and trading.

**Category:** Finance & Markets | **Website:** [stocktwits.com/trending](https://stocktwits.com/trending) | **Docs:** [parse.bot/marketplace/f2e46dc1-171b-470d-9a07-9cfb5a0879bb/stocktwits-com-api](https://parse.bot/marketplace/f2e46dc1-171b-470d-9a07-9cfb5a0879bb/stocktwits-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-stocktwits-com-api-f2e46dc1/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_trending_symbols

Get the list of currently trending stock ticker symbols on Stocktwits, including company names, trending scores, price data, volume, and community trend summaries. Results are paginated with up to 30 symbols per page. Each symbol includes real-time pricing, sector classification, watchlist counts, and an AI-generated trend summary describing why the symbol is trending.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `class` | string | No | Asset class filter. |
| `limit` | integer | No | Number of trending symbols to return per page (max 30). |
| `page` | integer | No | Page number for pagination. |
| `region` | string | No | Region filter. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-stocktwits-com-api-f2e46dc1/get_trending_symbols \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"class":"<string>","limit":"<integer>","page":"<integer>","region":"<string>"}'
```
