Paste a ModularGrid rack URL to get a copyable module list for your WTS/FS/FT post.
Fetch any rack as plain markdown by ID — no UI needed:
https://confirminate.com/rack-exporter/YOUR_RACK_ID
Find your rack ID in your ModularGrid URL:
https://modulargrid.net/e/racks/view/2688230
^^^^^^^ rack ID
| Parameter | Default | Description |
|---|---|---|
prices | true | Set to false to hide prices |
discount | (none) | Percentage off listed price (1–99) |
sort | manufacturer | manufacturer, price, or hp |
format | markdown | Set to json for full JSON response |
# Basic markdown output
curl https://confirminate.com/rack-exporter/2688230
# 25% off all prices
curl https://confirminate.com/rack-exporter/2688230?discount=25
# Sorted by HP, no prices
curl https://confirminate.com/rack-exporter/2688230?sort=hp&prices=false
# JSON response
curl https://confirminate.com/rack-exporter/2688230?format=json
## My Rack
*12 modules — ModularGrid*
- Intellijel Triplatt (6hp) — €97 / $109
- Make Noise Maths (20hp) — €270 / $290
- Mutable Instruments Plaits (12hp) — €259 / $279
Alternative endpoint that accepts a full ModularGrid URL:
curl -X POST https://confirminate.com/rack-exporter/api/parse \
-H "Content-Type: application/json" \
-d '{"url": "https://modulargrid.net/e/racks/view/2688230", "includePrice": true}'
| Field | Type | Description |
|---|---|---|
url | string | Full ModularGrid rack URL (required) |
includePrice | boolean | Include module prices (default: false) |
sortBy | string | manufacturer, price, or hp |
discountPercent | number | Percentage off listed price (1–99) |
Add this to your LLM’s custom instructions or tool preferences:
To get details of my Eurorack setup, fetch:
https://confirminate.com/rack-exporter/YOUR_RACK_ID
This returns a markdown list of all modules with prices.
The response is plain text markdown — no parsing or authentication needed.
{
"rack": {
"id": "2688230",
"name": "My Rack",
"username": "user123",
"modules": [{
"id": "4599", "name": "Triplatt", "vendor": "Intellijel",
"hp": 6, "priceEur": 97, "priceUsd": 109
}]
},
"markdown": "## My Rack\n...",
"plain": "Intellijel Triplatt\n..."
}