API Documentation
Integrate OmniOne data into your applications
Quick Links
Getting Started
The OmniOne API provides programmatic access to cryptocurrency market data, portfolio management, and more. All API requests are made to our base URL and return JSON responses.
Base URL
https://omnione.sstiem.com// Fetch current Bitcoin price
const response = await fetch('https://omnione.sstiem.com/api/prices/btc');
const data = await response.json();
console.log(data.price); // 67234.56Authentication
Some endpoints require authentication. Include your API key in the request headers:
Authorization: Bearer YOUR_API_KEYRate Limits
100
Requests per minute (Free)
1,000
Requests per minute (Pro)
10,000
Requests per minute (Enterprise)
Market Data
GET
/api/pricesGet current prices for all assets
GET
/api/prices/:symbolGet current price for specific asset
GET
/api/candles/:symbolGet OHLCV candle data
GET
/api/assetsList all tracked assets
GET
/api/assets/:symbolGet detailed asset information
Portfolio
GET
/api/portfolioGet user portfolio
POST
/api/portfolio/addAdd asset to portfolio
DELETE
/api/portfolio/:idRemove asset from portfolio
Watchlist
GET
/api/watchlistGet user watchlist
POST
/api/watchlist/addAdd asset to watchlist
DELETE
/api/watchlist/:symbolRemove from watchlist
Account
POST
/api/auth/loginUser login
POST
/api/auth/registerCreate new account
GET
/api/user/profileGet user profile
PUT
/api/user/profileUpdate user profile