Pricing

GEThttps://factor-price-api-main.fly.dev/
Response
Request
const response = await fetch('https://factor-price-api-main.fly.dev/', {
    method: 'GET',
    headers: {},
});
const data = await response.json();

GEThttps://factor-price-api-main.fly.dev/prices/tracked-tokens
Response
Request
const response = await fetch('https://factor-price-api-main.fly.dev/prices/tracked-tokens', {
    method: 'GET',
    headers: {},
});
const data = await response.json();

GEThttps://factor-price-api-main.fly.dev/prices/{tokens}
Path parameters
tokens*string

A comma separated list of tokens to get prices for.Each token queried should follow the following format: {chainName}:{tokenAddress}.Currently supports chainName='arbitrum'

Example: "arbitrum:0x6dD963C510c2D2f09d5eDdB48Ede45FeD063Eb36,arbitrum:0x82aF49447D8a07e3bd95BD0d56f35241523fBab1,arbitrum:0xaf88d065e77c8cC2239327C5EDb3A432268e5831"
Response

Success

Body
coinobject

List of coins.

Request
const response = await fetch('https://factor-price-api-main.fly.dev/prices/{tokens}', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{}

Last updated