← Back to Home

API Reference

Build powerful ML applications with our RESTful API. Comprehensive documentation, SDKs, and code examples.

Quick Start

Install the Python SDK
pip install oneml
Make your first API call
import oneml

client = oneml.Client(api_key="your-api-key")

# Train a model
model = client.models.train(
    dataset="your-dataset-id",
    algorithm="random_forest",
    target="price"
)

# Make predictions
predictions = client.models.predict(
    model_id=model.id,
    data={"features": [1.2, 3.4, 5.6]}
)

API Endpoints

View all 50+ endpoints

Official SDKs

API Features

Authentication

Secure API key and OAuth 2.0 authentication with granular permissions.

Learn more

Rate Limits

Generous rate limits with 10K requests/min for Pro plans and unlimited for Enterprise.

View limits

Security

Enterprise-grade security with TLS 1.3, SOC 2 compliance, and data encryption.

Security docs