# How to Search elasticsearch Indexes name filter on Index Creation date

**URL:** https://discuss.elastic.co/t/how-to-search-elasticsearch-indexes-name-filter-on-index-creation-date/259479
**Category:** Elasticsearch
**Created:** [December 23, 2020, 12:13pm UTC](https://discuss.elastic.co/t/how-to-search-elasticsearch-indexes-name-filter-on-index-creation-date/259479 "2020-12-23T12:13:58Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![yael](https://avatars.discourse-cdn.com/v4/letter/y/f6c823/32.png) [@yael](https://discuss.elastic.co/u/yael)
#### Post date: [December 23, 2020, 12:13pm UTC](https://discuss.elastic.co/t/how-to-search-elasticsearch-indexes-name-filter-on-index-creation-date/259479/1 "2020-12-23T12:13:58Z")

</div>

How can I filter the result I get from the query:  
GET /\_cat/indices?h=h,s,i,id,p,r,dc,dd,ss,creation.date.string  
to all indexes from specific creation.date.

Thanks  
Yael

---

<div class="post-metadata">

### Author: ![AClerk](https://sea2.discourse-cdn.com/elastic/user_avatar/discuss.elastic.co/aclerk/32/55297_2.png) [@AClerk](https://discuss.elastic.co/u/AClerk)
#### Post date: [December 23, 2020, 11:24pm UTC](https://discuss.elastic.co/t/how-to-search-elasticsearch-indexes-name-filter-on-index-creation-date/259479/2 "2020-12-23T23:24:21Z")

</div>

You cannot use the `creation.date` in your query.  
Please read - [Searching Indexes based on Index Creation date](https://discuss.elastic.co/t/searching-indexes-based-on-index-creation-date/52684)

Alternatively, you can sort. and then copy&paste to a spreadsheet for example.

```auto
GET /_cat/indices?h=h,s,i,id,p,r,dc,dd,ss,creation.date.string&s=creation.date.string:desc

```

---

<div class="post-metadata">

### Author: ![system](https://us1.discourse-cdn.com/elastic/original/3X/1/a/1ac57faf039f6b580b3f104ef42a2a89e41014de.png) [@system](https://discuss.elastic.co/u/system)
#### Post date: [January 20, 2021, 11:24pm UTC](https://discuss.elastic.co/t/how-to-search-elasticsearch-indexes-name-filter-on-index-creation-date/259479/3 "2021-01-20T23:24:26Z")

</div>

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
