# Order Types

We have the following order types.

```javascript
const RUNE_ETCH = 'rune-etch';
const RUNE_MINT = 'rune-mint';
const BULK = 'bulk';
const DIRECT = 'direct';
const BRC20 = 'brc20';
const RUNE_LAUNCHPAD_MINT = 'rune-launchpad-mint';
```

Each order type corresponds to an endpoint. Here is the full table:

| order type          | endpoint                                                                        |
| ------------------- | ------------------------------------------------------------------------------- |
| bulk                | [/order](https://docs.ordinalsbot.com/api/broken-reference)                     |
| brc20               | [/order](https://docs.ordinalsbot.com/api/broken-reference)                     |
| direct              | [/inscribe](https://docs.ordinalsbot.com/api/create-a-direct-inscription-order) |
| rune-etch           | [/runes/etch](https://docs.ordinalsbot.com/runes/etch)                          |
| rune-mint           | [/runes/mint](https://docs.ordinalsbot.com/runes/mint)                          |
| rune-launchpad-mint | [/runes/launchpad/mint](https://docs.ordinalsbot.com/runes/launchpad/mint)      |
