> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dripstack.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Search Articles by Ticker

> Find newsletter and podcast articles that mention a specific stock ticker.

Use `GET /api/v1/entities/search` with a `ticker` to find every indexed article
that mentions a stock symbol — useful for answering "what did analysts say
about \$TICKER this week?" without scanning topic search results by hand. Free,
no auth required.

## Request

```bash theme={null}
curl "https://dripstack.com/api/v1/entities/search?ticker=AAPL&limit=5"
```

| Parameter                            | Required                  | Description                                                      |
| ------------------------------------ | ------------------------- | ---------------------------------------------------------------- |
| `ticker`                             | one of `ticker`/`company` | Stock ticker, 1-8 characters (letters/numbers/`.`/`-`)           |
| `publicationSlug`                    | optional                  | Restrict results to one publication                              |
| `publishedAfter` / `publishedBefore` | optional                  | `YYYY-MM-DD`, inclusive UTC calendar day bounds                  |
| `limit`                              | optional                  | 1-30, defaults to 10                                             |
| `cursor`                             | optional                  | Pass the previous response's `nextCursor` to fetch the next page |

## Response

```json theme={null}
{
  "query": {
    "ticker": "AAPL",
    "company": null,
    "publicationSlug": null,
    "publishedAfter": null,
    "publishedBefore": null
  },
  "count": 1,
  "nextCursor": null,
  "items": [
    {
      "publicationSlug": "stratechery",
      "slug": "aapl-earnings-recap",
      "title": "Apple's Earnings Recap",
      "author": "Ben Thompson",
      "publishedAt": "2026-08-15T00:00:00.000Z",
      "priceCents": 500,
      "url": "https://stratechery.com/p/aapl-earnings-recap"
    }
  ]
}
```

Results are sorted by `publishedAt`, most recent first — not relevance-ranked
like `/api/v1/search`. `priceCents` is the price to unlock the full article;
the search itself is free.

## Ticker matching

`ticker` is matched against the tickers Drip has already extracted for each
article, uppercased before comparison. There's no ticker/company alias
resolution today — searching `ticker=AAPL` won't also catch articles tagged
only with the company name "Apple." If you're not sure which form an article
uses, see [Search by Company](/entity-search/company).
