Skip to main content
The Wood Wide AI API lets you upload tabular data, train models, and run inference without managing infrastructure, feature engineering, or model tuning. This guide walks you through authentication, uploading a dataset, training a model, and running your first prediction. Each step includes Python (requests), Python (SDK), JavaScript, and curl. SDK install and configuration: Python SDK.
HTTP vs Python SDK. Both tabs run the same workflow. Both use WOODWIDE_API_KEY, model status is processing, ready, or failed, and synchronous inference uploads a file. See the Python SDK page for details.

1. Get Your API Key

  1. Go to console.woodwide.ai and sign in to your Wood Wide AI account.
  2. Navigate to API keys.
  3. Click CREATE KEY.
  4. Copy the key securely.
Your API key grants full API access to your account. Store it securely and never share or commit it to version control.

2. Set Up Authentication

Store your API key in an environment variable and configure the base URL. All API requests require a Bearer token in the Authorization header.

3. Upload a Dataset

Upload a CSV or Parquet file to create a new dataset. The response contains a nested dataset object with the id you will use for training. Direct file uploads are limited to 30 MB. For larger files, see the signed-URL upload flow.

4. Train a Model

Start a training job by specifying the dataset, a model name, the model type, and the target column. The response contains a nested model object with the id.
Training a second model on the same dataset — even if it is a different model type — is significantly faster than the first training run.

5. Wait for Training to Complete

Poll the model status until it transitions to ready. Model status progresses through queued -> processing -> ready (or failed).

6. Run Inference

Send a test CSV to the trained model for synchronous predictions. File uploads for inference are limited to 30 MB.

Next Steps

  • Python SDK — async client, errors, and all model types
  • CLI — script the same workflow with wwai
Explore the full API reference:
  • Datasets — Upload, list, and manage your datasets and dataset versions
  • Models — Train, retrain, and inspect models across six model types (prediction, anomaly, embedding, clustering, factors, search)
  • Inference — Synchronous, asynchronous, and batch inference
  • Jobs — Monitor training and inference job status and retrieve results

Security Reminder

  • Keep your API key private and rotate it periodically.
  • All requests are encrypted in transit (TLS 1.2+).
  • For questions about authentication or API onboarding, contact support@woodwide.ai.