API Reference
FUZE.ac Platform API
Introduction & Authentication
Welcome to the FUZE.ac API documentation. This API provides programmatic access to the core features of our platform, allowing projects and developers to automate, monitor, and integrate our liquidity and token management services.
All API access is secured via API keys and operates on our non-custodial principles. Your funds are never held by us; the API simply sends trading instructions to your own exchange accounts.
Core Endpoints
The following is a high-level overview of the available API resources.
Market Making Engine
These endpoints allow you to control and monitor your AI-powered market making bots.
/v1/bots/start
Starts a market making bot for a specified trading pair on a given exchange.
Parameters:
exchange_id
pair
strategy_mode
/v1/bots/stop
Stops an active market making bot.
Parameters:
bot_id
/v1/bots/update_strategy
Changes the active strategy mode for a running bot.
Parameters:
bot_id
new_strategy_mode
/v1/bots/{bot_id}/status
Retrieves the current status and performance metrics for a specific bot.
KPI & Compliance API
Access real-time and historical performance data for your token's exchange listings.
/v1/kpi/realtime
Fetches the current KPI scores for a token pair on a specific exchange.
Parameters:
exchange_id
pair
Returns:
An object containing current daily volume, bid-ask spread, etc.
/v1/kpi/history
Retrieves historical KPI data over a specified time range.
Parameters:
exchange_id
pair
start_date
end_date
Unlock Schedule API
Programmatically manage your token's vesting and unlock calendar.
/v1/unlocks/schedule
Adds a new unlock event to your project's calendar.
Example Body:
{
"group_name": "Seed Investors",
"unlock_date": "YYYY-MM-DDTHH:MM:SSZ",
"token_amount": 1000000
}
/v1/unlocks
Lists all upcoming and past unlock events for your project.
Rate Limits & SDKs
To ensure platform stability and fair usage, all API endpoints are subject to rate limiting. Please refer to the response headers for your current rate limit status.
We are actively developing SDKs in popular languages like JavaScript/TypeScript and Python to simplify integration. Stay tuned for future announcements.