Die Dokumentation steht nur in Englisch zur Verfügung.

Instance Types API Endpoints

Fetch all available instance types with our API.

Get Instance Types

To list all available instance types you can simply send a GET request to the following endpoint.

https://api.nodion.com/v1/instance_types

Required Headers: Authorization

Example Response:

  {
    "instance_types": [
      {
        "id": "c047eab3-7574-44f5-b25a-5ae9b490500c",
        "name": "SB-G1-512MB",
        "slug": "sb-g1-512mb",
        "category": "sb",
        "cpu": 0.125,
        "mem": 0.5,
        "price_month": "4.0",
        "price_second": "0.000001522070015"
      },
      {
        "id": "0398247a-a0e2-44e9-bafe-1bba3b7c2750",
        "name": "SB-G1-1GB",
        "slug": "sb-g1-1gb",
        "category": "sb",
        "cpu": 0.25,
        "mem": 1.0,
        "price_month": "8.0",
        "price_second": "0.00000304414003"
      },
      {
        "id": "c1647d2d-a9ea-4c82-bbfb-6abef82ad5b6",
        "name": "SB-G1-2GB",
        "slug": "sb-g1-2gb",
        "category": "sb",
        "cpu": 0.5,
        "mem": 2.0,
        "price_month": "16.0",
        "price_second": "0.000006088280061"
      }
    ]
  }