Download
Get all STACKIT Compute Engine instance types with one click! Download a handy CSV file or a compressed SQL dump containing all instance types, regions and prices. Open the CSV with your favorite spreadsheet software (MS Excel, LibreOffice, Google Sheets) or import the SQL data into your preferred database (like SQLite).
Spreadsheet
Comma Separated Values (CSV) file with all instance types, regions and prices.
Database
Gzip compressed Structured Query Language (SQL) export with all instance types, regions, block storage and prices.
Command Line
With the SQL export, you can analyze all STACKIT Compute Engine instance types using
powerful command-line tools like sqlite3.
# Download SQL export
curl -O https://stackit.nkn-it.de/stackit.sql.gz
# Decompress SQL export
gzip -d stackit-instances.sql.gz
# Import SQL dump
sqlite3 stackit.db < stackit.sql
# Query instance types
sqlite3 stackit.db
Example SQL (cheapest 8+ vCPU instances in eu01, Single-AZ):
SELECT T."instanceType", T."vCpu", T."ramGb", P."priceMonth"
FROM "instance-prices" P
INNER JOIN "instance-types" T ON P."instanceType" = T."instanceType"
WHERE P."region" = 'eu01'
AND P."metro" = 0
AND T."vCpu" >= 8
ORDER BY P."priceMonth"
LIMIT 5;
Open Source
This project is open source under the Apache License (version 2.0) and hosted on GitHub. Your contributions and pull requests are welcome!