Public endpoints should use the domain: https://api.resfinex.com
https://api.resfinex.com
curl https://api.resfinex.com/engine/ticker
const fetch = require("node-fetch") fetch( "https://api.resfinex.com/engine/ticker") .then(res => res.json()) .then(result => { //TODO with the result })
import asyncio import aiohttp async def fetch(url): async with aiohttp.ClientSession() as session: async with session.get(url) as response: return await response.text() async def main(): json = await fetch("https://api.resfinex.com/engine/ticker") print(json) pass loop = asyncio.get_event_loop() loop.run_until_complete(main())
← General Authenticated APIs →