Back
Docs /
Getting Started
Gzip Compression
U.S Stocks
Forex
Crypto
UK Stock Market
Indian Market
Canada Market
Russian Market
Bonds
Fundamentals
https://api.finage.co.uk/last/crypto/{ symbol }?apikey=YOUR_API_KEY
Params
symbol
= Crypto symbol that you want to get priceQueries
apikey
= Your API keyhttps://api.finage.co.uk/last/crypto/btcusd?apikey=YOUR_API_KEY
Please login to make an API request
{
"symbol": "BTCUSD",
"price": 56385.08,
"timestamp": 1620757059440
}
https://api.finage.co.uk/last/quote/crypto/{ symbol }?apikey=YOUR_API_KEY
Params
symbol
= Crypto symbol that you want to get priceQueries
apikey
= Your API keyhttps://api.finage.co.uk/last/quote/crypto/btcusd?apikey=YOUR_API_KEY
Please login to make an API request
{
"symbol": "BTCUSD",
"ask": 56385.07,
"asize": 0.075349,
"bid": 56385.06,
"bsize": 0.36976,
"timestamp": 1620757064667
}
https://api.finage.co.uk/agg/crypto/{ symbol }/{ multiply }/{ time }/{ from }/{ to }?apikey=YOUR_API_KEY
Params
symbol
= Symbol of the cryptomultiply
= Time multiplier [1, 3, 5, 15, 30]time
= Size of the time. [minute, hour, day, week, month]Queries
apikey
= Your API keylimit
= Limit of the results. Default is 500, maximum allowed limit is 30000. Please set a limit if you are using the API in the production.sort
= You can sort the results by timestamp. asc will return ascending results oldest to newest, desc will return descending results newest to oldest. Default is asc.dbt_filter
= Daily-based time filter. You can allow the time filters to filter daily based. Otherwise, the filter will only trim the start and end of the output. Default is false.et
= End time in UTC. (Eg. 17:45)https://api.finage.co.uk/agg/crypto/BTCUSD/1/day/2020-02-05/2020-02-07?apikey=YOUR_API_KEY
Please login to make an API request
{
"symbol":"BTCUSD",
"totalResults":3,
"results":[
{ "o":9164.33,"h":9775,"l":9142.52,"c":9613.82,"v":54480.149862462065,"t":1580860800000 },
{ "o":9613.91,"h":9863.39,"l":9520,"c":9763.01,"v":61112.15618754777,"t":1580947200000 },
{ "o":9763.01,"h":9885,"l":9683.9,"c":9805.2,"v":45132.69009042265,"t":1581033600000 }
]
}
symbol
= Symbol of the cryptototalResults
= Total result sizeo
= Open priceh
= High pricel
= Low pricec
= Close pricev
= Volumet
= Timestamp [ms]https://api.finage.co.uk/agg/crypto/prev-close/{ symbol }?apikey=YOUR_API_KEY
Params
symbol
= Symbol of the cryptoQueries
apikey
= Your API keyhttps://api.finage.co.uk/agg/crypto/prev-close/BTCUSD?apikey=YOUR_API_KEY
Please login to make an API request
{
"symbol": "BTCUSD",
"totalResults": 1,
"results": [
{
"o": 55816.14,
"h": 56850,
"l": 54370,
"c": 56672.24,
"v": 57725.397404,
"t": 1620691200000
}
]
}
symbol
= Symbol of the cryptototalResults
= Total result sizeo
= Open priceh
= High pricel
= Low pricec
= Close pricev
= Volumet
= Timestamp [ms]https://api.finage.co.uk/depth/crypto/{ symbol }?apikey=YOUR_API_KEY
Params
symbol
= Crypto symbolQueries
apikey
= Your API keyhttps://api.finage.co.uk/depth/crypto/BTCUSD?apikey=YOUR_API_KEY
Please login to make an API request
{
"bids":[
["18466.48000000","0.64376500"],
["18465.93000000","0.00842600"],
...
],
"asks": [
["18466.49000000","2.25283700"],
["18467.93000000","0.00817800"],
...
]
}
https://api.finage.co.uk/history/crypto/depth/{ symbol }/{ from }/{ to }?limit=LIMIT&apikey=YOUR_API_KEY
Params
symbol
= Crypto symbolQueries
apikey
= Your API keylimit
= Response limit, default is 500. [Maximum 1000]https://api.finage.co.uk/history/crypto/depth/btcusd/1606392000000/1606394700000?apikey=YOUR_API_KEY
Please login to make an API request
[
{
"p":"17281.16000000",
"q":"0.06082300",
"t":1606394698681
},
{
"p":"17281.17000000",
"q":"0.05380600",
"t":1606394698878
},
...
]
t
= Timestamphttps://api.finage.co.uk/convert/crypto/{ from }/{ to }/{ amount }?apikey=YOUR_API_KEY
Params
amount
= The amount to convert.Queries
apikey
= Your API keyhttps://api.finage.co.uk/convert/crypto/BTC/SHIB/2?apikey=YOUR_API_KEY
Please login to make an API request
{
"from": "BTC",
"to": "SHIB",
"amount": 2,
"value": 1960784313.72549,
"timestamp": 1635946933092
}
https://api.finage.co.uk/snapshot/crypto?apikey=YOUR_API_KEY
Queries
quotes
= Enable or disable last quotes. Default is true.trades
= Enable or disable last trades. Default is false.symbols
= You can get the data from specific symbols by using this query. If you leave it empty, you will get the all available last data. (Separate symbols with commas.)apikey
= Your API keyhttps://api.finage.co.uk/snapshot/crypto?quotes=true&trades=true&symbols=BTCUSD,DOGEUSD&apikey=YOUR_API_KEY
Please login to make an API request
{
"totalResults": 2,
"lastQuotes": [
{
"s": "BTCUSD",
"a": 44361.36,
"b": 44356.82,
"asz": 0.00043,
"bsz": 0.19834,
"t": 1644505310197
},
{
"s": "DOGEUSD",
"a": 0.1548,
"b": 0.1547,
"asz": 133376,
"bsz": 138504,
"t": 1644505310197
}
],
"lastTrades": [
{
"s": "BTCUSD",
"p": 44447.81,
"sz": 0.1,
"t": 1644505310197
},
{
"s": "DOGEUSD",
"p": 0.1550595,
"sz": 136211.88,
"t": 1644505310197
}
]
}
s
= Crypto symbolasz
= Ask sizebsz
= Bid sizesz
= Trade sizet
= Timestamp (microseconds)totalResults
= Total incoming symbol number.https://api.finage.co.uk/history/market-cap/crypto/{ name }/{ from }/{ to }?apikey=YOUR_API_KEY
Params
name
= Full name of the cryptoess
= Enable symbol search query will allow you to make requests by using the short symbol name instead of the full name. (eg. BTC, LTC). [Default is false]Queries
apikey
= Your API keylimit
= Result limit. Maximum is 10000 default is 1000.https://api.finage.co.uk/history/market-cap/crypto/dogecoin/2021-04-01/2021-04-30?limit=50&apikey=YOUR_API_KEYa
Please login to make an API request
{
"name": "dogecoin",
"totalResult": 50,
"results": [
{
"p": 0.0544,
"mc": 7014689873,
"v": 1044102929,
"t": 1617235661257
},
{
"p": 0.0546,
"mc": 7046572589,
"v": 1055710577,
"t": 1617239843015
},
...
]
}
name
= Full name of the cryptototalResult
= Total results that found between the specified dates.mc
= Market capv
= Volumet
= TimestampProducts
Company
Resources
Apps
Blog
The Evolution of High-Frequency Trading Technologies
Introduction High-frequency trading (HFT) stands as a groundbreaking technological leap within financial markets, placing paramount importance on speed and efficiency. It operates through intricate algorithms and high-speed data networks, enabling the execution of an extensive volume of orders at
The Role of APIs in Financial Innovation
Introduction Application Programming Interfaces (APIs) have emerged as catalysts for profound transformation within the financial sector, sparking innovation and revolutionizing the delivery of financial services. These APIs serve as pivotal bridges between disparate software applications, facilit
Read more
Please note that all data provided under Finage and on this website, including the prices displayed on the ticker and charts pages, are not necessarily real-time or accurate. They are strictly intended for informational purposes and should not be relied upon for investing or trading decisions. Redistribution of the information displayed on or provided by Finage is strictly prohibited. Please be aware that the data types offered are not sourced directly or indirectly from any exchanges, but rather from over-the-counter, peer-to-peer, and market makers. Therefore, the prices may not be accurate and could differ from the actual market prices. We want to emphasize that we are not liable for any trading or investing losses that you may incur. By using the data, charts, or any related information, you accept all responsibility for any risks involved. Finage will not accept any liability for losses or damages arising from the use of our data or related services. By accessing our website or using our services, all users/visitors are deemed to have accepted these conditions.
Finage LTD 2023
Copyright