Rust Requires Chilkat v11.0.0+
Rust
Bitfinex v2 REST Public Trades
See more Bitfinex v2 REST Examples
The trades endpoint allows the retrieval of past public trades and includes details such as price, size, and time. Optional parameters can be used to limit the number of results; you can specify a start and end timestamp, a limit, and a sorting method.Chilkat Rust Downloads
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = chilkat::Http::new();
// Implements the following CURL command:
// curl https://api-pub.bitfinex.com/v2/trades/tBTCUSD/hist?limit=5
// Use the following online tool to generate HTTP code from a CURL command
// Convert a cURL Command to HTTP Source Code
let sb_response_body = chilkat::StringBuilder::new();
if http.quick_get_sb("https://api-pub.bitfinex.com/v2/trades/tBTCUSD/hist?limit=5", &sb_response_body).is_err() {
println!("{}", http.last_error_text());
return;
}
let jarr_resp = chilkat::JsonArray::new();
let _ = jarr_resp.load_sb(&sb_response_body);
jarr_resp.set_emit_compact(false);
println!("Response Body:");
println!("{}", jarr_resp.emit().unwrap_or_default());
let resp_status_code = http.last_status();
println!("Response Status Code = {}", resp_status_code);
if resp_status_code >= 400 {
println!("Response Header:");
println!("{}", http.last_header());
println!("Failed.");
return;
}
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// on trading pairs (ex. tBTCUSD)
// [
// [
// ID,
// MTS,
// AMOUNT,
// PRICE
// ]
// ]
// [
// [
// 472164271,
// 1594077725121,
// -0.15101673,
// 9370
// ],
// [
// 472164270,
// 1594077723860,
// -0.015,
// 9370
// ],
// [
// 472164269,
// 1594077720208,
// -0.015,
// 9370
// ],
// [
// 472164267,
// 1594077718125,
// -0.005,
// 9370
// ],
// [
// 472164251,
// 1594077697587,
// -0.015,
// 9370
// ]
// ]
// Sample code for parsing the JSON response...
// Use the following online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON
let jarr_trade = chilkat::JsonArray::new();
let mut i = 0;
let count_i = jarr_resp.size();
while i < count_i {
let _ = jarr_resp.array_at2(i, &jarr_trade);
let trade_id = jarr_trade.string_at(0).unwrap_or_default();
let mts = jarr_trade.string_at(1).unwrap_or_default();
let amount = jarr_trade.string_at(2).unwrap_or_default();
let price = jarr_trade.string_at(3).unwrap_or_default();
i = i + 1;
}