> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mockwise.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Barcode

## `ean13`

Generate a random [EAN-13](https://en.wikipedia.org/wiki/International_Article_Number) barcode.

```json theme={null}
{"type": "ean13"}

// '5803352818140', '4142935337533'
```

## `ean8`

Generate a random [EAN-8](https://en.wikipedia.org/wiki/International_Article_Number) barcode.

```json theme={null}
{"type": "ean8"}

// '30272446', '00484527'
```

## `isbn10`

[ISBN-10]: https://en.wikipedia.org/wiki/International_Standard_Book_Number#ISBN-10_check_digit_calculation

Generate a random [ISBN-10][ISBN-10] compliant `string`.

```json theme={null}
{"type": "isbn10"}

// '4250151735', '8395066937'
```

## `isbn13`

[ISBN-13]: https://en.wikipedia.org/wiki/International_Standard_Book_Number#ISBN-13_check_digit_calculation

Generate a random [ISBN-13][ISBN-13] compliant `string`.

```json theme={null}
{"type": "isbn13"}

// '9786881116078', '9785625528412'
```
