Inventory & Pricing
All resellers can sell the same products and services we have available in our store. This page will explain how to gather the available dedicated server inventory and pricing from the API.
Instant Servers
You can sell both instant and custom dedicated servers. To get the available Instant server inventory make a GET /inventory/product request:
curl --request GET \
--url 'https://core.hivelocity.net/api/v2/inventory/product?location=MAIN&bonding_support=null&group_by=facility' \
--header 'Accept: application/json' \
--header "X-API-KEY: $API_KEY"
This will return all our the Products we are currently selling along with the pricing you can charge your customers. We group products based on the location they are sold on our website. To get a list of different products you can replace MAIN
with:
MAIN
: Our main product line. Same as the products listed in our storeOUTLET
Discounted servers with old hardware. Same as the servers in our outletGPU
nVidia and AMD machines. Same as the servers in our GPU list
The endpoint itself will return the products grouped by facility (unless you specify a different group_by
parameter) along with other info about the product such as stock. For a full explanation of the returned values go to the GET /inventory/product request in the API reference and under Responses
click the 200
.
For more detailed info on our server offering see the Bare Metal Servers Documentation
Facilities
To get a list of all available facilities see our Facility Documentation.
Product Options
All Hivelocity products have customizable additions, some that are required and some that are optional. For example, the desired Operating System is a required option that must be passed at order time for a server.
For more information on Options refer to our Product Options Documentation.
Locations
To get a list of all Hivelocity facilities make a GET
request to /inventory/locations
curl -X 'GET' \
'https://core.hivelocity.net/api/v2/inventory/locations' \
-H 'accept: application/json' \
-H "X-API-KEY: $API_KEY"
Dedicated Inventory
In some cases you may want a specific configuration of servers available for instant deployment that we do not currently offer. We can accomodate your needs and add those configs to our inventory for our entire customer base or just for you as a reseller. Meaning, your API call to inventory will only return your particular list of servers with unique pricing. To inquire about dedicated inventory please email [email protected].
Custom Servers
Public API support for customer server quoting/orders is currently under development. To re-sell custom servers please reach out directly to [email protected] and we will take care of you.
Pricing & Quotes
The API will always return the price of a product for your end customer. In the case where you bill your own customers and have a discounted rate the API will still always return the rate you are charging your customer. Your discounted rate will be reflected on your invoices.
This means that any price you receive back from the API can be considered a valid active quote for a service.
Be careful quoting instant servers
Pricing and of availability of instant services changes periodicially as servers are sold and restocked. Typically an instant server quote will be good for up to 2 weeks, but sometimes large orders are placed that can reduce stock in some facilities below your quoted amount.
Updated over 1 year ago