Welcome to the Jolunu AI API documentation. This API allows developers to integrate cryptocurrency purchase optimization into their platforms. With Jolunu AI, users can access AI-powered transaction route recommendations, market data, and much more.
The base URL for all API requests is:
https://api.jolunu.ai/v1/
To use the Jolunu AI API, you will need an API key. You can obtain an API key by registering on our platform. Include the API key in the request header as follows:
Authorization: Bearer YOUR_API_KEY
This endpoint retrieves the best purchase route for a given cryptocurrency, based on AI-powered optimization.
Endpoint: GET /purchase-route
Parameters:
asset
(string): The cryptocurrency you want to purchase (e.g., `BTC`, `ETH`).amount
(decimal): The amount of the cryptocurrency you want to buy.user_id
(string): Optional, a unique user identifier for personalized recommendations.{
"asset": "BTC",
"amount": 1.0,
"recommended_routes": [
{
"platform": "Uniswap",
"exchange_rate": 45000,
"slippage": 0.02,
"fees": 0.005,
"route": "Uniswap > PancakeSwap",
"estimated_cost": 45005
},
{
"platform": "SushiSwap",
"exchange_rate": 44950,
"slippage": 0.01,
"fees": 0.004,
"route": "SushiSwap > 1inch",
"estimated_cost": 44954
}
]
}
Track all past cryptocurrency transactions, including the route used, fees paid, and slippage encountered.
Endpoint: GET /transaction-history
Parameters:
user_id
(string): The user ID to track transactions for.limit
(integer): The number of transactions to return (default: 10).start_date
(string, optional): Start date for filtering (YYYY-MM-DD).end_date
(string, optional): End date for filtering (YYYY-MM-DD).{
"transactions": [
{
"transaction_id": "abc123",
"asset": "BTC",
"amount": 0.5,
"platform": "Uniswap",
"route": "Uniswap > PancakeSwap",
"exchange_rate": 45000,
"slippage": 0.02,
"fees": 0.005,
"total_cost": 22500,
"status": "completed",
"date": "2025-01-01T12:00:00Z"
},
{
"transaction_id": "xyz456",
"asset": "ETH",
"amount": 10,
"platform": "SushiSwap",
"route": "SushiSwap > 1inch",
"exchange_rate": 45050,
"slippage": 0.01,
"fees": 0.004,
"total_cost": 45055,
"status": "completed",
"date": "2025-01-02T14:30:00Z"
}
]
}
Retrieve the latest market data, including prices, liquidity, slippage, and fees for a particular cryptocurrency.
Endpoint: GET /market-data
Parameters:
asset
(string): The cryptocurrency to get market data for (e.g., `BTC`, `ETH`).exchange
(string, optional): Specific exchange to retrieve data from (e.g., `Uniswap`, `SushiSwap`).{
"asset": "BTC",
"market_data": [
{
"platform": "Uniswap",
"price": 45000,
"liquidity": 1000000,
"slippage": 0.02,
"fees": 0.005
},
{
"platform": "SushiSwap",
"price": 44950,
"liquidity": 500000,
"slippage": 0.01,
"fees": 0.004
}
]
}
Simulate a cryptocurrency purchase to test Jolunu AI's optimization for a given asset, helping you assess potential costs before making a real purchase.
Endpoint: POST /simulate-purchase
Request Body:
{
"asset": "BTC",
"amount": 1.0
}
{
"asset": "BTC",
"amount": 1.0,
"recommended_route": {
"platform": "Uniswap",
"exchange_rate": 45000,
"slippage": 0.02,
"fees": 0.005,
"estimated_cost": 45005
},
"estimated_transaction_fee": 225.025,
"final_price": 45230.025
}
The API has a limit of 10,000 requests per day. If you exceed this limit, you will receive a 429 Too Many Requests error and will need to wait until the rate limit resets.
All API responses include a status code and message to indicate the result of the request.