Discussions
Apikey issue
I tryed to connect to dexguru api rest with the apikey that i received but i receive this error: {'statusCode': 401, 'error': 'Unauthorized', 'message': 'Please specify apiKey'}
Can you share with me an correct url and apikey usage inside a python example or others linguages?
Hello, could you please provide the sample of the request you are making? curl or code?
Are you sending 'api-key' (with dash) in headers or query string parameter?
API_ENDPOINT = "https://api.dev.dex.guru/v1/tickers"
API_KEY = "D6ODsaGAMm7FPBKHmyyEJjl-TpvPIU38wTT0IfP36S0"
HEADERS = {
'Authorization': f'Bearer {API_KEY}'
}
PAIRS = ["WETH-USDT", "USDT-WETH"]
EXCHANGES = ["uniswap", "kyberswap"]
results = {}
url = f"{API_ENDPOINT}?exchange={exchange}&pair={pair}"
response = requests.get(url, headers=HEADERS)
import requests
import json
The DexGuru API endpoint
API_ENDPOINT = "https://api.dev.dex.guru/v1/tickers"
Your DexGuru API key
API_KEY = "D6ODsaGAMm7FPBKHmyyEJjl-TpvPIU38wTT0IfP36S0"
The headers for the API request
HEADERS = {
'Authorization': f'Bearer {API_KEY}'
}
The pairs we want to compare
PAIRS = ["WETH-USDT", "USDT-WETH"]
The exchanges we want to compare
EXCHANGES = ["uniswap", "kyberswap"]
Placeholder for the results
results = {}
Iterate over the exchanges and pairs
for exchange in EXCHANGES:
for pair in PAIRS:
# Build the request URL
url = f"{API_ENDPOINT}?exchange={exchange}&pair={pair}"
# Send the API request
response = requests.get(url, headers=HEADERS)
both
We do not have the endpoints that you are trying to use. Please only use the endpoints that are described in this documentation https://dexguru.readme.io/reference/
change your headers:
HEADERS = {
'api-key': 'Kit3DnFzkBxvhcCYmnV2E-o0DZ9UDA7ACyl5nP-A5wI'
}
btw API has no endpoints https://api.dex.guru/v1/trading_pairs/weth-usdt/uniswap?api_key={api_key} and https://api.dev.dex.guru/v1/tickers
also you can try python SDK https://pypi.org/project/dexguru-sdk/
ok the apikey now works but it not extract the values of the token price.
can how show me an example in Python using endpoint url + querystring + apikey for extract the price of WETH-USDT from uniswap in chain ethereum?
We do not provide token pair information just yet. Price data is currently aggregated using all the different DEXs we support.
ο»Ώ