docs.currencyapi.ioQuick Start Guide ? | Currency API

docs.currencyapi.io Profile

Docs.currencyapi.io is a subdomain of Currencyapi.io, which was created on 2021-03-05,making it 3 years ago.

Description:Currency...

Discover docs.currencyapi.io website stats, rating, details and status online.Use our online tools to find owner and admin contact info. Find out where is server located.Read and write reviews or vote to improve it ranking. Check alliedvsaxis duplicates with related css, domain relations, most used words, social networks references. Go to regular site

docs.currencyapi.io Information

HomePage size: 97.127 KB
Page Load Time: 0.297159 Seconds
Website IP Address: 67.202.92.9

docs.currencyapi.io Similar Website

Order Foreign Currency Online | Currency Exchange International, Corp.
order.ceifx.com
Russian Ruble(RUB) Today - Russian Ruble Currency Exchange - Foreign Currency Exchange Rates and Cur
rub.fx-exchange.com
Edamam - Food Database API, Nutrition API and Recipe API
developer.edamam.com
Free Currency Charts - Historical Currency Rates | Xe
charts.xe.com
Free Currency Converter API | Free Currency Converter API
free.currencyconverterapi.com
Quick Start | API Documentation
developers.pipelinersales.com

docs.currencyapi.io PopUrls

Currency API: Quick Start Guide
https://docs.currencyapi.io/
Quick Start Guide | Currency API
https://docs.currencyapi.io/index.html

docs.currencyapi.io Httpheader

Connection: Keep-Alive
Keep-Alive: timeout=5, max=100
content-type: text/html; charset=UTF-8
last-modified: Sat, 30 Oct 2021 11:45:01 GMT
etag: "12b76-617d303d-3f8e6402889de6d0;;;"
accept-ranges: bytes
content-length: 76662
date: Sun, 12 May 2024 16:07:05 GMT
server: LiteSpeed
vary: User-Agent
wpx: 1
alt-svc: h3=":443"; ma=2592000, h3-29=":443"; ma=2592000, h3-Q050=":443"; ma=2592000, h3-Q046=":443"; ma=2592000, h3-Q043=":443"; ma=2592000, quic=":443"; ma=2592000; v="43,46"

docs.currencyapi.io Meta Info

content="Currency API" name="description"/
charset="utf-8"/
content="width=device-width,initial-scale=1" name="viewport"/
content="VuePress 2.0.0-beta.8" name="generator"/

docs.currencyapi.io Ip Information

Ip Country: United States
Latitude: 37.751
Longitude: -97.822

docs.currencyapi.io Html To Plain Text

Currency API Home open in new window Pricing open in new window Home open in new window Pricing open in new window Quick Start Guide ? Requirements Getting Started Definitions API URL Authentication (Token) Available symbols (Pairs) Tick data API Historical data API Code Examples JavaScript PHP Python PowerShell cURL C# Go (Native) Ruby Swift NodeJs Java # Introduction Currency API is fast and friendly crypto, commodity, and FX Currency Conversion JSON API, covering over 1200+ pairs. # Requirements We’ve made it easy to be up and running. All you need to do is to visit "My Account" and locate your token. If you don’t have one yet, please subscribe and get one immediately. # Getting Started Get ready to connect to Currency API using few coding lines of your favorite programming language. # Definitions Definition Description API URL The URL which all API request endpoints and URLs are based on. Token The access key assigned to your account and used to authenticate with the API. Symbol The three-letter currency code or currency pair (e.g., EUR, EURUSD). Base Currency The currency to which exchange rates are relative to. (If 1 USD = X EUR, USD is the base currency) Target Currency The currency an amount is converted to. (If 1 USD = X EUR, EUR is the target currency) Timestamp format All timestamps are unix/epoch timestamps (seconds that have passed since since January 1, 1970 UTC). # API URL The Currency API comes with a single endpoint that enables you to query one or many currency codes or pairs, with readable parameters. Depending on your subscription plan, the endpoint will return real-time exchange rate data. https://api.currencyapi.io/ # Authentication (Token) Your API token is a unique access key passed into the API URL’s token parameter to authenticate with the Currency API. The following is an example of how to append the access token for authentication: https : / / api . currencyapi . io / markets ? token = ACCESS_TOKEN # Available symbols (Pairs) To get the complete list of a specific market (e.g., Forex, Crypto, etc.) available symbols/pairs, use the following endpoint. Replace the MARKET_NAME with the targeted market (crypto or forex) https : / / api . currencyapi . io / markets ? token = ACCESS_TOKEN & market = MARKET_NAME # Tick data API /markets endpoint provides you the ability to query a base currency (e.g., EUR) or currency pair (e.g.,EURUSD). # Query with base curency or pair # Search symbol/s GET https : / / api . currencyapi . io / markets ? token = ACCESS_TOKEN & search = SYMBOL Response [ { "t" : "2021-04-15T03:53:00.593Z" , "tms" : "1618458780086" , "s" : "EURUSD" , "b" : 1.19864 , "bd" : 0 , "a" : 1.19867 , "ad" : 1 , "p" : 5 } ] # Get exact symbol/s GET https : / / api . currencyapi . io / markets ? token = ACCESS_TOKEN & symbol = SYMBOL Response { "t" : "2021-04-15T03:53:00.593Z" , "tms" : "1618458780086" , "s" : "EURUSD" , "b" : 1.19864 , "bd" : 0 , "a" : 1.19867 , "ad" : 1 , "p" : 5 } # Symbol Response JSON Structure Key Description t The last update date/time of query result. tms The last update timestamp of query result. s The currency pair. b The bid price. It is also referring to the highest price a buyer will pay for a currency. bd The bid price direction. It is also referring to the color code of the displayed bid price (e.g., red/green). a The ask price. It is also referring to the lowest price a seller will accept for a currency. ad The ask price direction. It is also referring to the color code of the displayed ask price (e.g., red/green). p The Currency precision # Historical data API You can get the historical data of any of the available symbols by adding the historical parameter. Response [ [ 1620604800 , 58336.16 , 59603 , 57399.33 , 57960 ] , ... ] GET https : / / api . currencyapi . io / markets ? token = ACCESS_TOKEN & symbol = SYMBOL & historical = true & offset = OFFSET // Optional (candles offset) & scale = SCALE // Optional (e.g., 1, 60, 1D, 1W, 1M), default to 1D # Historical Data Response JSON Structure index Description 0 Timestamp. 1 Open. 2 High. 3 Low. 4 Close. # Code Examples Currency API supports your favorite programming languages. Here are few examples of how to connect and start getting real-time quotes: # JavaScript Fetch JQuery XHR var requestOptions = { method : ’GET’ , redirect : ’follow’ } ; fetch ( "https://api.currencyapi.io/markets?token=ACCESS_TOKEN&symbol=SYMBOL" , requestOptions ) . then ( response = response . text ( ) ) . then ( result = console . log ( result ) ) . catch ( error = console . log ( ’error’ , error ) ) ; 1 2 3 4 5 6 7 8 9 10 11 12 var settings = { "url" : "https://api.currencyapi.io/markets?token=ACCESS_TOKEN&symbol=SYMBOL" , "method" : "GET" , "timeout" : 0 , } ; $ . ajax ( settings ) . done ( function ( response ) { console . log ( response ) ; } ) ; 1 2 3 4 5 6 7 8 9 var xhr = new XMLHttpRequest ( ) ; xhr . withCredentials = true ; xhr . addEventListener ( "readystatechange" , function ( ) { if ( this . readyState === 4 ) { console . log ( this . responseText ) ; } } ) ; xhr . open ( "GET" , "https://api.currencyapi.io/markets?token=ACCESS_TOKEN&symbol=SYMBOL" ) ; xhr . send ( ) ; 1 2 3 4 5 6 7 8 9 10 11 12 # PHP cURL HTTP_Request2 pecl_http var xhr = new XMLHttpRequest ( ) ; xhr . withCredentials = true ; xhr . addEventListener ( "readystatechange" , function ( ) { if ( this . readyState === 4 ) { console . log ( this . responseText ) ; } } ) ; xhr . open ( "GET" , "https://api.currencyapi.io/markets?token=ACCESS_TOKEN&symbol=SYMBOL" ) ; xhr . send ( ) ; 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 ?php require_once ’HTTP/Request2.php’ ; $request = new HTTP_Request2 ( ) ; $request - setUrl ( ’https://api.currencyapi.io/markets?token=ACCESS_TOKEN&symbol=SYMBOL’ ) ; $request - setMethod ( HTTP_Request2 :: METHOD_GET ) ; $request - setConfig ( array ( ’follow_redirects’ = TRUE ) ) ; try { $response = $request - send ( ) ; if ( $response - getStatus ( ) == 200 ) { echo $response - getBody ( ) ; } else { echo ’Unexpected HTTP status: ’ . $response - getStatus ( ) . ’ ’ . $response - getReasonPhrase ( ) ; } } catch ( HTTP_Request2_Exception $e ) { echo ’Error: ’ . $e - getMessage ( ) ; } 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 ?php $client = new http \ Client ; $request = new http \ Client \ Request ; $request - setRequestUrl ( ’https://api.currencyapi.io/markets?token=ACCESS_TOKEN&symbol=SYMBOL’ ) ; $request - setRequestMethod ( ’GET’ ) ; $request - setOptions ( array ( ) ) ; $client - enqueue ( $request ) - send ( ) ; $response = $client - getResponse ( ) ; echo $response - getBody ( ) ; 1 2 3 4 5 6 7 8 9 10 11 12 # Python http.client Requests import http . client conn = http . client . HTTPSConnection ( "api.currencyapi.io" ) conn . request ( "GET" , "/markets?token=ACCESS_TOKEN&symbol=SYMBOL" , ) res = conn . getresponse ( ) data = res . read ( ) print ( data . decode ( "utf-8" ) ) 1 2 3 4 5 6 7 8 9 10 import requests url = "https://api.currencyapi.io/markets?token=ACCESS_TOKEN&symbol=SYMBOL" payload = { } headers = { } response = requests . request ( "GET" , url , headers = headers , data = payload ) print ( response . text ) 1 2 3 4 5 6 7 8 9 10 # PowerShell RestMethod $response = Invoke-RestMethod ’https://api.currencyapi.io/markets?token=ACCESS_TOKEN&symbol=SYMBOL’ - Method ’GET’ - Headers $headers $response | ConvertTo-Json 1 2 # cURL curl curl location request GET ’https://api.currencyapi.io/markets?token=ACCESS_TOKEN&symbol=SYMBOL’ # C# RestSharp var client = new RestClient ( "https : //api.currencyapi.io/markets?token=ACCESS_TOKEN&symbol=SYMBOL"); client . Timeout = - 1 ; var request = new RestRequest ( Method . GET ) ; IRestResponse response = client . Execute ( request ) ; Console . WriteLine ( response . Content ) ; 1 2 3 4 5 # Go (Native) Native package main import ( "fmt" "net/http" "io/ioutil" ) func main ( ) { url := "https://api.currencyapi.io/markets?token=ACCESS_TOKEN&symbol=SYMBOL" method := "GET" client := & http . Client { } req...

docs.currencyapi.io Whois

Domain Name: currencyapi.io Registry Domain ID: b2d2b6123b894f94b67f3c1d747c3d30-DONUTS Registrar WHOIS Server: whois.namecheap.com Registrar URL: https://www.namecheap.com/ Updated Date: 2024-02-09T05:56:28Z Creation Date: 2021-03-05T21:42:34Z Registry Expiry Date: 2025-03-05T21:42:34Z Registrar: NameCheap, Inc. Registrar IANA ID: 1068 Registrar Abuse Contact Email: abuse@namecheap.com Registrar Abuse Contact Phone: +1.9854014545 Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited Registrant State/Province: Capital Region Registrant Country: IS Name Server: ns-423.awsdns-52.com Name Server: ns-1757.awsdns-27.co.uk Name Server: ns-1490.awsdns-58.org Name Server: ns-907.awsdns-49.net DNSSEC: unsigned >>> Last update of WHOIS database: 2024-05-17T15:43:35Z <<<