Onidel Cloud
  • Onidel Home Page
  • Onidel Cloud Panel
  • Cloud Status
  • Introduction
  • Information
    • Networking
    • Hardware Specifications
    • Datacenters
  • API Reference
    • Changelog
    • Authentication
    • OS Template
    • Instance Type
    • Instance Price
    • Team
      • Get Teams
    • Virtual Machine
      • List Instances
      • Get Instance Backups
      • Create Instance
      • Get Instance
      • Update Instance
      • Stop Instance
      • Reboot Instance
      • Snapshot Instance
      • Delete Instance
    • Backups
      • List Backups
      • Generate Download URL
    • Snapshots
      • List Snapshots
      • Delete Snapshot
      • Generate Download URL
  • Features
    • Data Transfer (Bandwidth) Pooling
    • Hourly Billing
    • VM Scaling
    • BYOIP & BGP
    • Attach a Snapshot/Backup to your Server
    • Peer Server
  • Automatic Backup
  • Cloud Server
    • IPv4 Configuration
    • IPv6 Configuration
    • Using Custom ISO
    • Reverse DNS
    • Disable Secure Boot
    • Backup and Snapshot Download
  • ACCOUNT
    • Supported Currencies
    • Changing Currency
    • Chargebacks & Disputes
    • Enable 2-FA
    • Affiliate Program
  • Policies
    • Service Level Agreement
    • Terms of Service
    • Acceptable Usage Policy
    • Privacy Policy
Powered by GitBook
On this page
  1. API Reference

Instance Price

API Version: 1.2.0 (26-Jan-2025)

PreviousInstance TypeNextTeam

Last updated 3 months ago

Retrieve monthly pricing for a VM configuration

get

Fetch the monthly price based on the specified VM configuration parameters.

Query parameters
vcpustring · intRequired

Number of virtual CPUs (vCPU)

ramstring · intRequired

Amount of RAM (in MB)

diskstring · intRequired

Disk size (in GB)

locationstring · stringRequired

Deployment location

currencystring · enumRequired

Currency used to retrieve the price

Possible values:
instance_typestring · uuidRequired

Instance type identifier (UUID)

Responses
200
Successful operation
application/json
400
Bad request
404
Not found
get
GET /instance_price HTTP/1.1
Host: api.cloud.onidel.com
Accept: */*
{
  "instance_type": "a2e55f7d-c741-4317-acce-124dc34ffaad",
  "vcpu": 1,
  "ram": 1,
  "disk": 1,
  "bw": 1,
  "net_rate": 1,
  "price_per_month": 1,
  "currency": "text"
}