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

> Find newsletter and podcast articles that mention an organization.

Use `GET /api/v1/entities/search` with an `organization` to find curated
articles that mention an institution (Fed, SEC, OpenAI). The name is matched
against company and theme tags; Wikidata may add related companies and
tickers. Same catalog as topic search (`isCurated`, not disabled). Free, no
auth required.

## Request

The endpoint requires at least one of `ticker`, `company`, `person`,
`organization`, or `subject`.

```bash theme={null}
curl "https://dripstack.com/api/v1/entities/search?organization=Federal%20Reserve&limit=5"
```

| Parameter                            | Required | Description                                                      |
| ------------------------------------ | -------- | ---------------------------------------------------------------- |
| `organization`                       | yes      | Organization name, minimum 2 characters                          |
| `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": null,
    "person": null,
    "organization": "Federal Reserve",
    "subject": null,
    "publicationSlug": null,
    "publishedAfter": null,
    "publishedBefore": null
  },
  "resolved": {
    "kind": "organization",
    "name": "Federal Reserve",
    "description": "central banking system of the United States",
    "companies": [],
    "tickers": [],
    "matchedVia": ["company", "theme"]
  },
  "count": 1,
  "nextCursor": null,
  "items": [
    {
      "publicationSlug": "stratechery",
      "slug": "fed-rate-decision",
      "title": "The Fed's Rate Decision",
      "author": "Ben Thompson",
      "publishedAt": "2026-07-30T00:00:00.000Z",
      "priceCents": 500,
      "url": "https://stratechery.com/p/fed-rate-decision",
      "isPodcast": false
    }
  ]
}
```

Results are sorted by `publishedAt`, most recent first. Broad thematic
research still belongs on topic search; use `organization` when you want
recency-ranked articles that mention a named institution.
