ModularGrid Rack Exporter

Paste a ModularGrid rack URL to get a copyable module list for your WTS/FS/FT post.

API & LLM Integration

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

Query Parameters

ParameterDefaultDescription
pricestrueSet to false to hide prices
discount(none)Percentage off listed price (1–99)
sortmanufacturermanufacturer, price, or hp
formatmarkdownSet to json for full JSON response

Examples

# 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

Example Output

## My Rack

*12 modules — ModularGrid*

- Intellijel Triplatt (6hp) — €97 / $109
- Make Noise Maths (20hp) — €270 / $290
- Mutable Instruments Plaits (12hp) — €259 / $279

POST API

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}'
FieldTypeDescription
urlstringFull ModularGrid rack URL (required)
includePricebooleanInclude module prices (default: false)
sortBystringmanufacturer, price, or hp
discountPercentnumberPercentage off listed price (1–99)

LLM Integration

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.

JSON Response Shape

{
  "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..."
}

Notes