---
title: "Filter articles mentioning disasters"
description: "Get articles that mention at least one disaster entity"
source: https://apitube.io/cookbook/filter-articles-mentioning-disasters
---

#### Input parameters

| Parameter        | Description                                    | Type    | Default | Required |
|:-----------------|:-----------------------------------------------|:--------|:--------|:---------|
| disaster.name    | Disaster name to filter by (e.g., "Earthquake"). | string  |         | Yes      |
| published_at.start | Start date filter (optional).                  | string  |         | No       |
| api_key          | Your API key.                                  | string  |         | Yes      |
| per_page         | Maximum number of articles to retrieve.       | integer | 20      | No       |

#### Workflow examples

##### Request for articles mentioning a disaster:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?disaster.name=Earthquake&published_at.start=2024-01-01&api_key=YOUR_API_KEY"
```

##### Request for articles about specific disaster:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?disaster.name=Earthquake&api_key=YOUR_API_KEY"
```

##### Request for disaster impact analysis by region:

```shell
curl -X GET "https://api.apitube.io/v1/news/everything?disaster.name=Wildfire&location.name=California&published_at.start=2023-01-01&sort.by=published_at&api_key=YOUR_API_KEY"
```

---

#### Related Examples

- [Filter articles mentioning diseases](/cookbook/filter-articles-mentioning-diseases)
- [Filter articles mentioning persons](/cookbook/filter-articles-mentioning-persons)
- [Retrieve environmental news](/cookbook/retrieve-environmental-news-from-key-locations)
- [Get news on a specific date](/cookbook/get-news-on-date)
- [Get sorted news by date](/cookbook/get-sorted-news)

