Database Types API Endpoints

Fetch all available database types with our API.

Get Database Types

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

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

Required Headers: Authorization

Example Response:

  {
    "database_types": [
      {
        "id": "a0b7b31c-7361-409d-bfca-c4935da5600c",
        "name": "SB-G1-512MB",
        "slug": "sb-g1-512mb",
        "category": "sb",
        "cpu": 0.125,
        "mem": 0.5,
        "price_month": "6.0",
        "price_second": "0.000002283105023"
      },
      {
        "id": "61e1556a-c266-4003-b6ff-f36182f46a95",
        "name": "SB-G1-1GB",
        "slug": "sb-g1-1gb",
        "category": "sb",
        "cpu": 0.25,
        "mem": 1.0,
        "price_month": "12.0",
        "price_second": "0.000004566210046"
      },
      {
        "id": "6dc0e53e-f126-4d3a-af6b-dbd63f2bf11a",
        "name": "SB-G1-2GB",
        "slug": "sb-g1-2gb",
        "category": "sb",
        "cpu": 0.5,
        "mem": 2.0,
        "price_month": "24.0",
        "price_second": "0.000009132420091"
      }
    ]
  }