APIVerve.API.CurrencySymbols
1.1.5
dotnet add package APIVerve.API.CurrencySymbols --version 1.1.5
NuGet\Install-Package APIVerve.API.CurrencySymbols -Version 1.1.5
<PackageReference Include="APIVerve.API.CurrencySymbols" Version="1.1.5" />
paket add APIVerve.API.CurrencySymbols --version 1.1.5
#r "nuget: APIVerve.API.CurrencySymbols, 1.1.5"
// Install APIVerve.API.CurrencySymbols as a Cake Addin #addin nuget:?package=APIVerve.API.CurrencySymbols&version=1.1.5 // Install APIVerve.API.CurrencySymbols as a Cake Tool #tool nuget:?package=APIVerve.API.CurrencySymbols&version=1.1.5
Currency Symbols API
Currency Symbols is a simple tool for getting currency symbols. It returns the currency symbol, name, and more of a currency.
This is a .NET Wrapper for the Currency Symbols API
Installation
Using the .NET CLI:
dotnet add package APIVerve.API.CurrencySymbols
Using the Package Manager:
nuget install APIVerve.API.CurrencySymbols
Using the Package Manager Console:
Install-Package APIVerve.API.CurrencySymbols
From within Visual Studio:
- Open the Solution Explorer.
- Right-click on a project within your solution.
- Click on Manage NuGet Packages...
- Click on the Browse tab and search for "APIVerve.API.CurrencySymbols".
- Click on the APIVerve.API.CurrencySymbols package, select the appropriate version in the right-tab and click Install.
Configuration
Before using the currencysymbols API client, you have to setup your account and obtain your API Key.
You can get it by signing up at https://apiverve.com
Usage
The Currency Symbols API documentation is found here: https://docs.apiverve.com/api/currencysymbols.
You can find parameters, example responses, and status codes documented here.
Setup
Authentication
Currency Symbols API uses API Key-based authentication. When you create an instance of the API client, you can pass your API Key as a parameter.
// Create an instance of the API client
var apiClient = new CurrencySymbolsAPIClient("[YOUR_API_KEY]", true);
Perform Request
Using the API client, you can perform requests to the API.
Define Query
var queryOptions = new CurrencySymbolsQueryOptions {
currency = "USD"
};
Simple Request
var response = apiClient.Execute(queryOptions);
if(response.error != null) {
Console.WriteLine(response.error);
} else {
var jsonResponse = JsonConvert.SerializeObject(response, Newtonsoft.Json.Formatting.Indented);
Console.WriteLine(jsonResponse);
}
Example Response
{
"status": "ok",
"error": null,
"data": {
"countriesFound": [
{
"country_name": "AMERICAN SAMOA",
"currency_name": "US Dollar",
"currency_iso_code": "USD",
"currency_number": "840",
"currency_mnr_unts": "2",
"currency_symbol": "$"
},
{
"country_name": "BONAIRE, SINT EUSTATIUS AND SABA",
"currency_name": "US Dollar",
"currency_iso_code": "USD",
"currency_number": "840",
"currency_mnr_unts": "2",
"currency_symbol": "$"
},
{
"country_name": "BRITISH INDIAN OCEAN TERRITORY (THE)",
"currency_name": "US Dollar",
"currency_iso_code": "USD",
"currency_number": "840",
"currency_mnr_unts": "2",
"currency_symbol": "$"
},
{
"country_name": "ECUADOR",
"currency_name": "US Dollar",
"currency_iso_code": "USD",
"currency_number": "840",
"currency_mnr_unts": "2",
"currency_symbol": "$"
},
{
"country_name": "EL SALVADOR",
"currency_name": "US Dollar",
"currency_iso_code": "USD",
"currency_number": "840",
"currency_mnr_unts": "2",
"currency_symbol": "$"
},
{
"country_name": "GUAM",
"currency_name": "US Dollar",
"currency_iso_code": "USD",
"currency_number": "840",
"currency_mnr_unts": "2",
"currency_symbol": "$"
},
{
"country_name": "HAITI",
"currency_name": "US Dollar",
"currency_iso_code": "USD",
"currency_number": "840",
"currency_mnr_unts": "2",
"currency_symbol": "$"
},
{
"country_name": "MARSHALL ISLANDS (THE)",
"currency_name": "US Dollar",
"currency_iso_code": "USD",
"currency_number": "840",
"currency_mnr_unts": "2",
"currency_symbol": "$"
},
{
"country_name": "MICRONESIA (FEDERATED STATES OF)",
"currency_name": "US Dollar",
"currency_iso_code": "USD",
"currency_number": "840",
"currency_mnr_unts": "2",
"currency_symbol": "$"
},
{
"country_name": "NORTHERN MARIANA ISLANDS (THE)",
"currency_name": "US Dollar",
"currency_iso_code": "USD",
"currency_number": "840",
"currency_mnr_unts": "2",
"currency_symbol": "$"
},
{
"country_name": "PALAU",
"currency_name": "US Dollar",
"currency_iso_code": "USD",
"currency_number": "840",
"currency_mnr_unts": "2",
"currency_symbol": "$"
},
{
"country_name": "PANAMA",
"currency_name": "US Dollar",
"currency_iso_code": "USD",
"currency_number": "840",
"currency_mnr_unts": "2",
"currency_symbol": "$"
},
{
"country_name": "PUERTO RICO",
"currency_name": "US Dollar",
"currency_iso_code": "USD",
"currency_number": "840",
"currency_mnr_unts": "2",
"currency_symbol": "$"
},
{
"country_name": "TIMOR-LESTE",
"currency_name": "US Dollar",
"currency_iso_code": "USD",
"currency_number": "840",
"currency_mnr_unts": "2",
"currency_symbol": "$"
},
{
"country_name": "TURKS AND CAICOS ISLANDS (THE)",
"currency_name": "US Dollar",
"currency_iso_code": "USD",
"currency_number": "840",
"currency_mnr_unts": "2",
"currency_symbol": "$"
},
{
"country_name": "UNITED STATES MINOR OUTLYING ISLANDS (THE)",
"currency_name": "US Dollar",
"currency_iso_code": "USD",
"currency_number": "840",
"currency_mnr_unts": "2",
"currency_symbol": "$"
},
{
"country_name": "UNITED STATES OF AMERICA (THE)",
"currency_name": "US Dollar",
"currency_iso_code": "USD",
"currency_number": "840",
"currency_mnr_unts": "2",
"currency_symbol": "$"
},
{
"country_name": "VIRGIN ISLANDS (BRITISH)",
"currency_name": "US Dollar",
"currency_iso_code": "USD",
"currency_number": "840",
"currency_mnr_unts": "2",
"currency_symbol": "$"
},
{
"country_name": "VIRGIN ISLANDS (U.S.)",
"currency_name": "US Dollar",
"currency_iso_code": "USD",
"currency_number": "840",
"currency_mnr_unts": "2",
"currency_symbol": "$"
}
],
"currency": "USD"
},
"code": 200
}
Customer Support
Need any assistance? Get in touch with Customer Support.
Updates
Stay up to date by following @apiverveHQ on Twitter.
Legal
All usage of the APIVerve website, API, and services is subject to the APIVerve Terms of Service and all legal documents and agreements.
License
Licensed under the The MIT License (MIT)
Copyright (©) 2024 APIVerve, and Evlar LLC
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net20 is compatible. net35 is compatible. net40 is compatible. net403 was computed. net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 2.0
- Newtonsoft.Json (>= 13.0.3)
-
.NETFramework 3.5
- Newtonsoft.Json (>= 13.0.3)
-
.NETFramework 4.0
- Newtonsoft.Json (>= 13.0.3)
-
.NETFramework 4.5
- Newtonsoft.Json (>= 13.0.3)
-
.NETStandard 2.0
- Newtonsoft.Json (>= 13.0.3)
-
.NETStandard 2.1
- Newtonsoft.Json (>= 13.0.3)
-
net6.0
- Newtonsoft.Json (>= 13.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.