﻿---
title: Exists
description: Check that the document /game-of-thrones/1 exists. 
url: https://www.elastic.co/elastic/docs-builder/docs/3028/reference/elasticsearch/clients/javascript/exists_examples
products:
  - Elasticsearch
  - Elasticsearch Client
  - Elasticsearch JavaScript Client
---

# Exists
Check that the document `/game-of-thrones/1` exists.
<note>
  Since this API uses the `HEAD` method, the body value will be boolean.
</note>

```js
'use strict'

const { Client } = require('@elastic/elasticsearch')
const client = new Client({
  cloud: { id: '<cloud-id>' },
  auth: { apiKey: 'base64EncodedKey' }
})

async function run () {
  await client.index({
    index: 'game-of-thrones',
    id: '1',
    document: {
      character: 'Ned Stark',
      quote: 'Winter is coming.'
    }
  })

  const exists = await client.exists({
    index: 'game-of-thrones',
    id: 1
  })

  console.log(exists)
}

run().catch(console.log)
```