> ## 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 Company

> Find newsletter and podcast articles that mention a specific company.

Use `GET /api/v1/entities/search` with a `company` to find articles that
mention a company by name — a case-insensitive substring match, so
`company=apple` matches "Apple Inc." Free, no auth required.

## Request

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

| Parameter                            | Required                  | Description                                                                 |
| ------------------------------------ | ------------------------- | --------------------------------------------------------------------------- |
| `company`                            | one of `ticker`/`company` | Company name, minimum 2 characters, matched as a case-insensitive substring |
| `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": null,
    "company": "apple",
    "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.

## Company matching

`company` matches against the free-text company names Drip's extraction
pipeline wrote for each article — there's no canonical company registry, so
results depend on how a given article's company name was written. If you know
the ticker instead, [Search by Ticker](/entity-search/ticker) is more precise
(tickers are normalized to uppercase).
