Developer simulator

eazePredict API Simulator

Test time-series parameter discovery, train, and predict payloads before integration. Use sample data, build a request visually, or paste the documented JSON payload.

Test the same payload your backend can send later. Simulator calls are rate-limited and meant for evaluation.

Understand models

Sample Data

Run a valid prediction payload immediately

Start from a complete prediction request body for the selected model.

Linear Regression sample Forecast or predict output from documented input signals.

Guided Payload Builder

Build the documented AIML JSON without hand-writing it

These fields map directly to the selected AIML request body: tenant key, model artifact key, output label, cadence, start date, and feature arrays.

CSV import Import CSV to fill target and input signal values.

Raw JSON

Edit the exact payload your integration can send

Paste a documented AIML discovery, train, or predict payload. The simulator posts this JSON body directly to the public simulator endpoint for the selected operation and model.

Make sure the JSON matches the selected Predict API payload from the documentation.

Result

Simulator response

Successful responses can be reviewed as a status summary, guidance, chart, table, trust/warning details, and raw JSON.

Ready Run the simulator to see API output.
Operation: Predict Family: Regression Model: Linear Regression
Full simulator response JSON
{}

Developer helper

Integration details for the generated request

Use this public simulator route for evaluation. Do not send AIML internal base URLs, service tokens, or secret headers from browser apps.

Operation
Predict
Endpoint URL
/api/v1/predict/simulator/linear
HTTP method
POST
Generated JSON
{}
cURL command

Time-series discovery

ARIMA parameter guidance

Time-series parameter discovery recommends p, d, q, or a candidate ARIMA order from the supplied history. Treat suggestions as diagnostics to compare against validation metrics, not as guaranteed production settings.

Term Meaning Simulator behavior
p Autoregressive order: how many prior observations the AR portion uses. find-p forwards the documented helper payload and renders returned PACF values only when the backend includes them.
d Differencing order: how many times the series should be differenced to become sufficiently stationary. find-d uses the confirmed ADF-based helper response and renders returned p-values.
q Moving-average order: how many prior forecast errors the MA portion uses. find-q forwards the documented helper payload and renders returned ACF values only when the backend includes them.
(p,d,q) ARIMA order combining autoregressive, differencing, and moving-average terms. find-order renders returned heuristic and AIC grid-search details without inventing missing metrics.

Discovery payloads require timeSeriesInput as a flat numeric array with at least 8 observations; 20+ observations are recommended. Date and frequency fields are not required by the confirmed ARIMA helper schema. CSV import accepts value rows, or timestamp,value rows with timestamps ignored. SARIMA may also require seasonal order (P,D,Q,m); no seasonal-order discovery route is registered, so seasonal options are not shown.