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.Documentation Index
Fetch the complete documentation index at: https://docs.woodwide.ai/llms.txt
Use this file to discover all available pages before exploring further.
1. Get Your API Key
- Go to console.woodwide.ai and sign in to your Wood Wide AI account.
- Navigate to API keys.
- Click CREATE KEY.
- Copy the key securely.
2. Set Up Authentication
Store your API key in an environment variable and configure the base URL. All API requests require aBearer token in the Authorization header.
3. Upload a Dataset
Upload a CSV or Parquet file to create a new dataset. The response contains a nesteddataset 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 nestedmodel 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 toready. Model status progresses through queued -> training -> 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
Explore the full API reference to learn about all available endpoints:- 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.