Get order payment amount

TIP

API Method

GET /v2/order/price

Request params

FieldPositionTypeRequiredDescription
resource_valuebodyintegertrueThe number of resources to rent
rent_durationbodyintegertrueWhen the time unit is equal to 'd', 1-30, when the time unit is equal to 'h', only 1 and 3 are supported temporarily
rent_time_unitbodystringtrueOnly allowed when d and h are equal to d, rent_ Duration allows 1 to 30, which is equal to h. Currently, only 1 and 3 are allowed

Responses

FieldTypeRequiredDescription
codeintegertrueResponse code
msgstringtrueCode description
request_idstringtrue
dataobjecttrue
» resource_valueintegertrueResource quantity
» pay_amountnumbertruePayment amount
» rent_durationintegertrueRental duration
» rent_time_unitstringtrueRental time unit,Only 'd' and 'h' are supported
» price_in_sunnumbertruePrice

Response example

{
    "code": 0,
    "msg": "ok",
    "request_id": "d30e5f5c-21c1-4975-a982-de3169dd0959",
    "data": {
        "resource_value": 32000,
        "pay_amount": 4.44,
        "rent_duration": 1,
        "rent_time_unit": "h",
        "price_in_sun": 120
    }
}

Code demo

curl --location --request GET 'https://feee.io/open/v2/order/price?resource_value=<resource_value>&rent_time_unit=<rent_time_unit>&rent_duration=<rent_duration>' \
--header 'key: <key>' \
--header 'User-Agent: Feee.io Client/1.0.0 (https://feee.io)'
package main

import (
   "fmt"
   "net/http"
   "io/ioutil"
)

func main() {

   url := "https://feee.io/open/v2/order/price?resource_value=%3Cresource_value%3E&rent_time_unit=%3Crent_time_unit%3E&rent_duration=%3Crent_duration%3E"
   method := "GET"

   client := &http.Client {
   }
   req, err := http.NewRequest(method, url, nil)

   if err != nil {
      fmt.Println(err)
      return
   }
   req.Header.Add("key", "<key>")
   req.Header.Add("User-Agent", "Feee.io Client/1.0.0 (https://feee.io)")

   res, err := client.Do(req)
   if err != nil {
      fmt.Println(err)
      return
   }
   defer res.Body.Close()

   body, err := ioutil.ReadAll(res.Body)
   if err != nil {
      fmt.Println(err)
      return
   }
   fmt.Println(string(body))
}
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
   CURLOPT_URL => 'https://feee.io/open/v2/order/price?resource_value=%3Cresource_value%3E&rent_time_unit=%3Crent_time_unit%3E&rent_duration=%3Crent_duration%3E',
   CURLOPT_RETURNTRANSFER => true,
   CURLOPT_ENCODING => '',
   CURLOPT_MAXREDIRS => 10,
   CURLOPT_TIMEOUT => 0,
   CURLOPT_FOLLOWLOCATION => true,
   CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
   CURLOPT_CUSTOMREQUEST => 'GET',
   CURLOPT_HTTPHEADER => array(
      'key: <key>',
      'User-Agent: Feee.io Client/1.0.0 (https://feee.io)'
   ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;

import http.client

conn = http.client.HTTPSConnection("feee.io")
payload = ''
headers = {
   'key': '<key>',
   'User-Agent': 'Feee.io Client/1.0.0 (https://feee.io)'
}
conn.request("GET", "/open/v2/order/price?resource_value=%3Cresource_value%3E&rent_time_unit=%3Crent_time_unit%3E&rent_duration=%3Crent_duration%3E", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
OkHttpClient client = new OkHttpClient().newBuilder()
   .build();
MediaType mediaType = MediaType.parse("text/plain");
RequestBody body = RequestBody.create(mediaType, "");
Request request = new Request.Builder()
   .url("https://feee.io/open/v2/order/price?resource_value=<resource_value>&rent_time_unit=<rent_time_unit>&rent_duration=<rent_duration>")
   .method("GET", body)
   .addHeader("key", "<key>")
   .addHeader("User-Agent", "Feee.io Client/1.0.0 (https://feee.io)")
   .build();
Response response = client.newCall(request).execute();
Last Updated: