> For the complete documentation index, see [llms.txt](https://docs.ordinalsbot.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ordinalsbot.com/runes/launchpad/get-launchpad.md).

# Get Launchpad

Use this endpoint to get an existing rune launchpad

### `GET` a launchpad

## Get launchpad

<mark style="color:green;">`GET`</mark> `https://api.ordinalsbot.com/runes/launchpad/:id`

{% tabs %}
{% tab title="200: OK " %}

```json
{
    "allocatedItemCount": 1000,
    "charge": {
        "address": "bc1q3rzc2jfpwa0j73s7u0e6luqfl9uxq0hg6k38zr",
        "amount": 22470,
        "confirmed": true,
        "output": "696e5a3091a8e3f1069d1a6634bfa8a0188e7e8cdc51d64c2407c00e85b6400a:1",
        "paid": true
    },
    "completed": true,
    "createdAt": 1714728088301,
    "creatorAddress": "bc1pgnwmg7wplc09cm9fctgmgalu7l4synjh7khwzre9qlcvg5xy0k5qz9mwe3",
    "id": "shitcoin•paradise",
    "mintedItemCount": 1000,
    "paidItemCount": 1000,
    "price": 1,
    "publicAllocation": 0,
    "rune": "SHITCOIN•PARADISE",
    "runeSplitParameters": {
        "confirmed": true,
        "executed": true,
        "fee": 22470,
        "feeOutput": "696e5a3091a8e3f1069d1a6634bfa8a0188e7e8cdc51d64c2407c00e85b6400a:1",
        "feeVByte": 30,
        "receiverAddress": "bc1pdwvm6agr3eytkmcmcwmas2p5tkzgg93ktztzddu5ud8m9x37ufwqh0ajkk",
        "rune": "SHITCOIN•PARADISE",
        "runeOutput": "e83cdffe5866717e29a02e8669fdfe36a74f4e426c271517168e9c7e241f95d1:1",
        "splitSize": 100,
        "splitsNumber": 10,
        "txid": "3c7e6337cc429db81a0142cc83add40c276ddbb7514845f9ec74bcc25f40c736"
    },
    "saleSize": 100,
    "salesCap": 10,
    "serviceFee": 9000,
    "state": "minted",
    "tokenCharge": {
        "address": "bc1qkddf25klyyf0xxue3ax4tgv3lcxujtf5vlpx2z",
        "amount": 1000,
        "confirmed": true,
        "output": "e83cdffe5866717e29a02e8669fdfe36a74f4e426c271517168e9c7e241f95d1:1",
        "paid": true,
        "rune": "SHITCOIN•PARADISE"
    },
    "totalTokensForSale": 1000
}
```

{% endtab %}

{% tab title="404: Not Found " %}

```
{
    "error": [
        {
            "msg": "Launchpad does not exist"
        }
    ]
}
```

{% endtab %}

{% tab title="500: Internal Server Error " %}

```json
{
    status: 'error',
    error: 'error reason'
}
```

{% endtab %}
{% endtabs %}
