> For the complete documentation index, see [llms.txt](https://db.coolstone.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://db.coolstone.dev/0/reference/api/get-records.md).

# Get Records

## Get Record From Tag

Get a Record from it's tag.

```javascript
import {getRecordFromTag} from 'dubnium'
getRecordFromTag("tag")
```

## Get All Records

```javascript
import {getAllRecords} from 'dubnium'
getAllRecords()
```

## Fuzzy Search Records

{% content-ref url="/pages/nAlh07Qp5tFrRCZMxeZG" %}
[Fuzzy Search Records](/0/reference/api/fuzzy-search-records.md)
{% endcontent-ref %}

## Get Record from Value

```javascript
import { getRecordFromValue } from 'dubnium'
getRecordFromValue()
```

## Check if a Record exists

Check if a record exists.

{% hint style="warning" %}
This will only return `true` or `false`.
{% endhint %}

```javascript
import ( doesRecordExistByTag } from 'dubnium'
doesRecordExistByTag("tag_here")
```
