Servebolt API (v1)
Submit feedback
Submit feedback
  1. Billing
  • Introduction
  • Auth
    • Signup
      POST
    • Login
      POST
    • User Info
      GET
    • Heartbeat
      GET
    • Refresh Token
      POST
    • Reset Password
      POST
    • Resend SMS verification code
      POST
    • Verify your phone number
      POST
    • MFA Challenge (OTP)
      POST
  • Bolts
    • Access
      • Invite User Contact
      • List Contacts
      • Update Contact Role
      • Delete Contact
    • Databases
      • List Bolt Databases
      • Get Bolt Database
      • Create Bolt Database
      • Update Bolt Database
      • Delete Bolt Database
    • Statistics
      • Dynamic Requests Statistics
      • TTFB Statistics
      • Storage Statistics
      • Content Type Statistics
      • Cache Statistics
      • Environments Dynamic Requests Statistics
      • Environments TTFB Statistics
      • Environments Storage Statistics
    • List Bolts
      GET
    • Bolt Name Validate
      POST
    • Available CMS
      GET
    • Create Bolt
      POST
    • Get Bolt
      GET
    • Get Bolt Environments
      GET
    • Update Bolt
      PUT
    • Archive Bolt
      DELETE
    • Available PHP Versions
      GET
    • Get Bolt Subscription
      GET
    • Bolt Usage
      GET
    • Update Bolt Quota
      POST
    • Transfer Bolt Request
      POST
    • Transfer Bolt Request Copy
      GET
  • Environments
    • Git
      • Get Environment Git Status
      • Create Git Configuration
      • Update Git Configuration
      • Delete Environment Git Repository
      • Deploy Git Repository
      • Regenerate Git Public Key
      • Retrieve Git Repository Branches
      • Test Git Repository Connection
    • Domains
      • List Domains
      • List Environment Domains
      • Get Environment Domain
      • Create Domain Validation
      • Create Environment Domain
      • Delete Domain
      • Get Domain Certificates
      • Link Certificate to Domain
      • Unlink Certificate from Domain
    • Logs
      • Get Environment Apache Access Logs
      • Get Environment Apache Error Logs
      • Get Environment Cron Errors
    • List Environments
    • Create Environment
    • Get Environment
    • Update Environment
    • Delete Environment
    • Purge Environment Cache
    • List Environment Cronjobs
    • Get Environment Statistics
    • Get Environment Available Settings
    • Get Environment PHP Versions
    • Get Environment Usage
    • Get Environment SSH Accesses
    • Create Environment SSH Access
    • Remove Environment SSH Access
    • List Environment Databases
    • Toggle Environment Dev Mode
    • Environment Install Wordpress
    • Environment Optimize Wordpress
  • Locations
    • List Locations
    • Check SL8 Availability
    • Available Countries
  • Databases
    • List Databases
    • Get Database
    • Create Database
    • Update Database
    • Delete Database
    • Link Database
    • Unlink Database
    • Get Slow Queries
  • Cronjobs
    • List Cronjobs
    • Create Cronjob
    • Get Cronjob
    • Update Cronjob
    • Delete Cronjob
  • SSH Keys
    • List SSH Keys
    • Add a new SSH Key
    • Get SSH Key
    • Delete SSH Key
  • Certificates
    • List Certificate Orders
    • Get Certificate Order
    • Order new Certificate
    • Store custom certificate
    • Update Auto-Renewal
    • Verify DNS challenge
    • Delete Certificate Order
  • Billing
    • Pricing Calculator
      GET
    • Get Billing Customer Info
      GET
    • Update Bolt Subscription
      POST
    • List Invoices
      GET
    • Download Invoice
      GET
  • Profile
    • Get User Profile
    • Update User Profile
    • Update Profile Picture
    • Delete Profile Picture
  1. Billing

Pricing Calculator

GET
https://api.servebolt.io/v1/products/suggest-subscription
From different criteria, like storage needed and PHP memory limit, our pricing calculator can give you the best plans matching your requirements.

Request

Query Params
currency
string 
required
Example:
EUR
storage
integer 
optional
Needed disk space
Example:
1024
memory_limit
integer 
optional
Needed PHP Memory Limit
Example:
256
production_environments
integer 
optional
Needed amout of production environments
Example:
2
dynamic_requests
integer 
optional
Needed amout of DN
Example:
500000
Header Params
Accept
string 
required
Example:
application/json
Content-Type
string 
required
Example:
application/json

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.servebolt.io/v1/products/suggest-subscription?currency=EUR&storage=1024&memory_limit=256&production_environments=2&dynamic_requests=500000' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json'

Responses

🟢200OK
application/json
Body
data
array [object {3}] 
required
id
string 
required
type
string 
required
attributes
object 
required
Example
{
    "data": [
        {
            "id": "2022-Scale",
            "type": "plans",
            "attributes": {
                "period_unit": "month",
                "item_price_id": "2022-Scale-EUR-Monthly",
                "name": "Scale",
                "base_price": 69900,
                "total": 183530,
                "addons_total": 113630,
                "included": {
                    "memory_limit": 768,
                    "storage": 102400,
                    "production_environments": 50,
                    "dynamic_requests": 3000000
                },
                "marketing": {
                    "storageGB": 100
                },
                "addons": [
                    {
                        "id": "2022-2-Extra-Storage",
                        "type": "addons",
                        "attributes": {
                            "item_price_id": "2022-2-Extra-Storage-EUR-Monthly",
                            "name": "Extra Storage",
                            "unit": "GB",
                            "quantity": 924,
                            "total": 113630,
                            "addon_type": "storage"
                        }
                    }
                ],
                "eligible": true
            }
        },
        {
            "id": "2022-bolt-Business",
            "type": "plans",
            "attributes": {
                "period_unit": "month",
                "item_price_id": "2022-bolt-Business-EUR-Monthly",
                "name": "Business",
                "base_price": 34900,
                "total": 432426,
                "addons_total": 397526,
                "included": {
                    "memory_limit": 512,
                    "storage": 40960,
                    "production_environments": 25,
                    "dynamic_requests": 1000000
                },
                "marketing": {
                    "storageGB": 40
                },
                "addons": [
                    {
                        "id": "2022-2-Extra-Storage",
                        "type": "addons",
                        "attributes": {
                            "item_price_id": "2022-2-Extra-Storage-EUR-Monthly",
                            "name": "Extra Storage",
                            "unit": "GB",
                            "quantity": 984,
                            "total": 397526,
                            "addon_type": "storage"
                        }
                    }
                ],
                "eligible": true
            }
        },
        {
            "id": "2019-legacy-plan",
            "type": "plans",
            "attributes": {
                "period_unit": "month",
                "item_price_id": "eur-legacy-plan-1m",
                "name": "Legacy Plan",
                "base_price": 100,
                "total": 579466,
                "addons_total": 579366,
                "included": {
                    "memory_limit": 256,
                    "storage": 2048,
                    "production_environments": 1,
                    "dynamic_requests": null
                },
                "marketing": [],
                "addons": [
                    {
                        "id": "2022-Extra-Production-Environment-2",
                        "type": "addons",
                        "attributes": {
                            "item_price_id": "2022-Extra-Production-Environment-2-EUR-Monthly",
                            "name": "Extra Production Environment(s)",
                            "quantity": 1,
                            "base_price": 1000,
                            "total": 1000,
                            "addon_type": "production_environments"
                        }
                    },
                    {
                        "id": "2022-2-Extra-Storage",
                        "type": "addons",
                        "attributes": {
                            "item_price_id": "2022-2-Extra-Storage-EUR-Monthly",
                            "name": "Extra Storage",
                            "unit": "GB",
                            "quantity": 1022,
                            "total": 574866,
                            "addon_type": "storage"
                        }
                    },
                    {
                        "id": "2023-Extra-Dynamic-Requests",
                        "type": "addons",
                        "attributes": {
                            "item_price_id": "2023-Extra-Dynamic-Requests-EUR-Monthly",
                            "name": "2023 Extra Dynamic Requests",
                            "quantity": 5,
                            "total": 3500,
                            "addon_type": "dynamic_requests"
                        }
                    }
                ],
                "eligible": true
            }
        },
        {
            "id": "2022-bolt-pro",
            "type": "plans",
            "attributes": {
                "period_unit": "month",
                "item_price_id": "2022-bolt-pro-EUR-Monthly",
                "name": "Pro",
                "base_price": 9900,
                "total": 580862,
                "addons_total": 570962,
                "included": {
                    "memory_limit": 256,
                    "storage": 10240,
                    "production_environments": 5,
                    "dynamic_requests": 500000
                },
                "marketing": {
                    "storageGB": 10
                },
                "addons": [
                    {
                        "id": "2022-2-Extra-Storage",
                        "type": "addons",
                        "attributes": {
                            "item_price_id": "2022-2-Extra-Storage-EUR-Monthly",
                            "name": "Extra Storage",
                            "unit": "GB",
                            "quantity": 1014,
                            "total": 570962,
                            "addon_type": "storage"
                        }
                    }
                ],
                "eligible": true
            }
        },
        {
            "id": "2019-dedicated-server",
            "type": "plans",
            "attributes": {
                "period_unit": "month",
                "item_price_id": "eur-dedicated-server-1m",
                "name": "Dedicated Server",
                "base_price": 100,
                "total": 589342,
                "addons_total": 589242,
                "included": {
                    "memory_limit": null,
                    "storage": null,
                    "production_environments": null,
                    "dynamic_requests": null
                },
                "marketing": [],
                "addons": [
                    {
                        "id": "2022-Increased-PHP-Memory-Limit",
                        "type": "addons",
                        "attributes": {
                            "item_price_id": "2022-Increased-PHP-Memory-Limit-EUR-Monthly",
                            "name": "Increased PHP Memory Limit",
                            "unit": "256MB",
                            "quantity": 1,
                            "base_price": 7900,
                            "total": 7900,
                            "addon_type": "memory_limit"
                        }
                    },
                    {
                        "id": "2022-Extra-Production-Environment-2",
                        "type": "addons",
                        "attributes": {
                            "item_price_id": "2022-Extra-Production-Environment-2-EUR-Monthly",
                            "name": "Extra Production Environment(s)",
                            "quantity": 2,
                            "base_price": 1000,
                            "total": 2000,
                            "addon_type": "production_environments"
                        }
                    },
                    {
                        "id": "2022-2-Extra-Storage",
                        "type": "addons",
                        "attributes": {
                            "item_price_id": "2022-2-Extra-Storage-EUR-Monthly",
                            "name": "Extra Storage",
                            "unit": "GB",
                            "quantity": 1024,
                            "total": 575842,
                            "addon_type": "storage"
                        }
                    },
                    {
                        "id": "2023-Extra-Dynamic-Requests",
                        "type": "addons",
                        "attributes": {
                            "item_price_id": "2023-Extra-Dynamic-Requests-EUR-Monthly",
                            "name": "2023 Extra Dynamic Requests",
                            "quantity": 5,
                            "total": 3500,
                            "addon_type": "dynamic_requests"
                        }
                    }
                ],
                "eligible": true
            }
        },
        {
            "id": "2019-custom-legacy",
            "type": "plans",
            "attributes": {
                "period_unit": "month",
                "item_price_id": "custom-legacy-monthly-eur",
                "name": "Custom Legacy",
                "base_price": 10000,
                "total": 598754,
                "addons_total": 588754,
                "included": {
                    "memory_limit": null,
                    "storage": 1,
                    "production_environments": null,
                    "dynamic_requests": null
                },
                "marketing": [],
                "addons": [
                    {
                        "id": "2022-Increased-PHP-Memory-Limit",
                        "type": "addons",
                        "attributes": {
                            "item_price_id": "2022-Increased-PHP-Memory-Limit-EUR-Monthly",
                            "name": "Increased PHP Memory Limit",
                            "unit": "256MB",
                            "quantity": 1,
                            "base_price": 7900,
                            "total": 7900,
                            "addon_type": "memory_limit"
                        }
                    },
                    {
                        "id": "2022-Extra-Production-Environment-2",
                        "type": "addons",
                        "attributes": {
                            "item_price_id": "2022-Extra-Production-Environment-2-EUR-Monthly",
                            "name": "Extra Production Environment(s)",
                            "quantity": 2,
                            "base_price": 1000,
                            "total": 2000,
                            "addon_type": "production_environments"
                        }
                    },
                    {
                        "id": "2022-2-Extra-Storage",
                        "type": "addons",
                        "attributes": {
                            "item_price_id": "2022-2-Extra-Storage-EUR-Monthly",
                            "name": "Extra Storage",
                            "unit": "GB",
                            "quantity": 1023,
                            "total": 575354,
                            "addon_type": "storage"
                        }
                    },
                    {
                        "id": "2023-Extra-Dynamic-Requests",
                        "type": "addons",
                        "attributes": {
                            "item_price_id": "2023-Extra-Dynamic-Requests-EUR-Monthly",
                            "name": "2023 Extra Dynamic Requests",
                            "quantity": 5,
                            "total": 3500,
                            "addon_type": "dynamic_requests"
                        }
                    }
                ],
                "eligible": true
            }
        },
        {
            "id": "2019-small-enterprise",
            "type": "plans",
            "attributes": {
                "period_unit": "month",
                "item_price_id": "eur-small-enterprise-128-gb-1m",
                "name": "Small Enterprise",
                "base_price": 125000,
                "total": 641878,
                "addons_total": 516878,
                "included": {
                    "memory_limit": 1024,
                    "storage": 131072,
                    "production_environments": 5,
                    "dynamic_requests": null
                },
                "marketing": [],
                "addons": [
                    {
                        "id": "2022-2-Extra-Storage",
                        "type": "addons",
                        "attributes": {
                            "item_price_id": "2022-2-Extra-Storage-EUR-Monthly",
                            "name": "Extra Storage",
                            "unit": "GB",
                            "quantity": 896,
                            "total": 513378,
                            "addon_type": "storage"
                        }
                    },
                    {
                        "id": "2023-Extra-Dynamic-Requests",
                        "type": "addons",
                        "attributes": {
                            "item_price_id": "2023-Extra-Dynamic-Requests-EUR-Monthly",
                            "name": "2023 Extra Dynamic Requests",
                            "quantity": 5,
                            "total": 3500,
                            "addon_type": "dynamic_requests"
                        }
                    }
                ],
                "eligible": true
            }
        },
        {
            "id": "2019-enterprise",
            "type": "plans",
            "attributes": {
                "period_unit": "month",
                "item_price_id": "eur-enterprise-1m",
                "name": "Enterprise",
                "base_price": 150000,
                "total": 666878,
                "addons_total": 516878,
                "included": {
                    "memory_limit": 1024,
                    "storage": 131072,
                    "production_environments": 20,
                    "dynamic_requests": null
                },
                "marketing": [],
                "addons": [
                    {
                        "id": "2022-2-Extra-Storage",
                        "type": "addons",
                        "attributes": {
                            "item_price_id": "2022-2-Extra-Storage-EUR-Monthly",
                            "name": "Extra Storage",
                            "unit": "GB",
                            "quantity": 896,
                            "total": 513378,
                            "addon_type": "storage"
                        }
                    },
                    {
                        "id": "2023-Extra-Dynamic-Requests",
                        "type": "addons",
                        "attributes": {
                            "item_price_id": "2023-Extra-Dynamic-Requests-EUR-Monthly",
                            "name": "2023 Extra Dynamic Requests",
                            "quantity": 5,
                            "total": 3500,
                            "addon_type": "dynamic_requests"
                        }
                    }
                ],
                "eligible": true
            }
        }
    ]
}
Previous
Delete Certificate Order
Next
Get Billing Customer Info
Built with