API Documentation

Integrate OmniOne data into your applications

Need an API Key?

Sign up for a free account to get your API key.

Get API Key

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.56

Authentication

Some endpoints require authentication. Include your API key in the request headers:

Authorization: Bearer YOUR_API_KEY

Rate Limits

100
Requests per minute (Free)
1,000
Requests per minute (Pro)
10,000
Requests per minute (Enterprise)

Market Data

GET/api/prices

Get current prices for all assets

GET/api/prices/:symbol

Get current price for specific asset

GET/api/candles/:symbol

Get OHLCV candle data

GET/api/assets

List all tracked assets

GET/api/assets/:symbol

Get detailed asset information

Portfolio

GET/api/portfolio

Get user portfolio

POST/api/portfolio/add

Add asset to portfolio

DELETE/api/portfolio/:id

Remove asset from portfolio

Watchlist

GET/api/watchlist

Get user watchlist

POST/api/watchlist/add

Add asset to watchlist

DELETE/api/watchlist/:symbol

Remove from watchlist

Account

POST/api/auth/login

User login

POST/api/auth/register

Create new account

GET/api/user/profile

Get user profile

PUT/api/user/profile

Update user profile