nFusion Solutions Market Data API
nfusionsolutions · Finance
[nFusion Solutions](https://nfusionsolutions.com) provides [REST APIs](https://nfusionsolutions.com/data-feeds/) that deliver enterprise-grade financial data. Data sets include real-time and historical pricing for Spot prices of precious metals such as Gold, Silver, Platinum, and Palladium, exchange rates for major currency pairs, exchange rates for Crypto Currencies such as BTC, ETH, and LTC. All API access requires authentication. In order to be issued access credentials you must first enter i
Authentication
Sample Requests
Historical OHLC data for the specified period and interval size The combination of the interval parameter and start and end dates can result in results being truncated to conform to result size limits. See comments on interval parameter for details on valid interval values.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/nfusionsolutions.biz/1/api/v1/Currencies/history?end=example&pairs=example&start=example&format=json&interval=example"
import requests
params = {
"end": "example",
"pairs": "example",
"start": "example",
"format": "json",
"interval": "example"
}
response = requests.get(
"https://api.apis.guru/v2/specs/nfusionsolutions.biz/1/api/v1/Currencies/history",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/nfusionsolutions.biz/1/api/v1/Currencies/history');
url.searchParams.set('end', 'example');
url.searchParams.set('pairs', 'example');
url.searchParams.set('start', 'example');
url.searchParams.set('format', 'json');
url.searchParams.set('interval', 'example');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/nfusionsolutions.biz/1/api/v1/Currencies/history")
q := baseURL.Query()
q.Set("end", "example")
q.Set("pairs", "example")
q.Set("start", "example")
q.Set("format", "json")
q.Set("interval", "example")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/nfusionsolutions.biz/1/api/v1/Currencies/history")
uri.query = URI.encode_www_form({
"end" => "example",
"pairs" => "example",
"start" => "example",
"format" => "json",
"interval" => "example"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/nfusionsolutions.biz/1/api/v1/Currencies/history?" . http_build_query([
"end" => "example",
"pairs" => "example",
"start" => "example",
"format" => "json",
"interval" => "example"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Current Mid Rate
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/nfusionsolutions.biz/1/api/v1/Currencies/rate?pairs=example&format=json"
import requests
params = {
"pairs": "example",
"format": "json"
}
response = requests.get(
"https://api.apis.guru/v2/specs/nfusionsolutions.biz/1/api/v1/Currencies/rate",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/nfusionsolutions.biz/1/api/v1/Currencies/rate');
url.searchParams.set('pairs', 'example');
url.searchParams.set('format', 'json');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/nfusionsolutions.biz/1/api/v1/Currencies/rate")
q := baseURL.Query()
q.Set("pairs", "example")
q.Set("format", "json")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/nfusionsolutions.biz/1/api/v1/Currencies/rate")
uri.query = URI.encode_www_form({
"pairs" => "example",
"format" => "json"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/nfusionsolutions.biz/1/api/v1/Currencies/rate?" . http_build_query([
"pairs" => "example",
"format" => "json"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Current and daily summary information combined into a single quote
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/nfusionsolutions.biz/1/api/v1/Currencies/summary?pairs=example&format=json"
import requests
params = {
"pairs": "example",
"format": "json"
}
response = requests.get(
"https://api.apis.guru/v2/specs/nfusionsolutions.biz/1/api/v1/Currencies/summary",
params=params,
)
print(response.json())const url = new URL('https://api.apis.guru/v2/specs/nfusionsolutions.biz/1/api/v1/Currencies/summary');
url.searchParams.set('pairs', 'example');
url.searchParams.set('format', 'json');
const response = await fetch(url);
const data = await response.json();
console.log(data);package main
import (
"fmt"
"io"
"net/http"
"net/url"
)
func main() {
baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/nfusionsolutions.biz/1/api/v1/Currencies/summary")
q := baseURL.Query()
q.Set("pairs", "example")
q.Set("format", "json")
baseURL.RawQuery = q.Encode()
targetURL := baseURL.String()
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/nfusionsolutions.biz/1/api/v1/Currencies/summary")
uri.query = URI.encode_www_form({
"pairs" => "example",
"format" => "json"
})
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/nfusionsolutions.biz/1/api/v1/Currencies/summary?" . http_build_query([
"pairs" => "example",
"format" => "json"
]);
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with nFusion Solutions Market Data API?
nFusion Solutions Market Data API is a Finance API. Developers commonly use finance APIs for:
- processing payments and handling transactions
- building subscription and billing systems
- automating invoicing and financial reporting
- fraud detection and risk scoring
- connecting to banking and accounting software
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. nFusion Solutions Market Data API is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide · Learn about API keys · What is REST?