Skip to main content
Jul 16, 2026

Modellix CLI Upgrade

modellix-cli has been upgraded with a fuller command set for terminal, scripting, and agent workflows.

What’s New

  • Authentication profiles: init, auth login/status/whoami/logout, and named profiles with config inspection and cleanup.
  • Environment checks: doctor verifies Node.js, API key resolution, connectivity, and balance.
  • Model discovery: model list and model describe to find and inspect model slugs.
  • Model execution: model run (with model invoke as a compatible alias), --wait, stdin bodies, and model batch for JSONL submissions.
  • Task tooling: task get, task wait, task download, and local task history.
  • Automation-ready output: --json, --quiet, stable exit codes, and CI-friendly flags.
For full usage details, see the CLI documentation.
Jul 15, 2026

File API

We are excited to launch the File API, a free, API-Key-authenticated way to upload media assets and feed them directly into Modellix prediction APIs — no need to host the files yourself.

What’s New

  • Upload Media File (POST /api/v1/media/files): Upload a single image, video, or audio file via multipart/form-data. The response returns a file_id, media type, and a download_url you can pass into prediction API input fields such as image_url.
  • List Media Files (GET /api/v1/media/files): List the non-expired files belonging to your team with limit / offset pagination (max page size 100).
  • Delete Media File (DELETE /api/v1/media/files/{file_id}): Delete a file owned by your team to free upload quota immediately.

Highlights

  • Free of charge: Uploads are not billed and are not subject to balance freeze (admission).
  • Secure: Files are scoped to your team — there is no cross-team leakage.
  • Time-boxed retention: Uploaded files are retained for about 7 days by default.
  • Flexible formats: Supports common image, video, and audio extensions (e.g., png, mp4, mp3), with a default max file size of 16 MB.
To get started, see the File API guide for the full workflow, limits, and supported formats.
Jul 5, 2026

One-Click Media Export from Playground

We are excited to launch a powerful export feature in the Modellix Playground, allowing you to integrate generated media directly into your external storage or automated workflows.

Supported Export Destinations

Instead of downloading files locally and manually uploading them elsewhere, you can now transfer your generated images, videos, and audio directly to third-party platforms:
  • Webhook URL: Deliver the media payload directly to your custom Webhook endpoint to instantly trigger automated backend pipelines.
  • Google Drive: Save assets straight to your Google Drive folders for seamless cloud storage and sharing.
  • Dropbox: Send media assets directly to your Dropbox workspace with a single click.
To get started, generate any media in the Playground and click the Export button in the result panel to select your preferred destination.
Jun 30, 2026

Webhooks and Notification Settings

We are excited to announce two major updates that improve integration automation and account monitoring:

API Webhook Support

You can now configure a Webhook URL to receive task results asynchronously once your media generation tasks reach a terminal state.
  • Asynchronous Delivery: No more polling! Include the X-Webhook-URL header in your prediction creation requests, and Modellix will automatically deliver the payload to your endpoint.
  • Detailed Configuration: For full setup instructions, URL requirements, retry rules, and event payload schemas, please check the REST API Webhooks documentation.

Console Notification Settings

You can now configure notification alerts directly in the console to stay on top of your workspace events:
  • Low Balance Alerts: Set up email alerts to notify you when your team balance drops below your specified threshold, helping you prevent service interruptions.
  • Configure Now: Set up your notification preferences on the Team Notification Settings page.
Jun 26, 2026

Common API Updates

We have expanded our suite of utility endpoints under the Common API to improve key management, billing transparency, and model discovery:

New Utility Endpoints

  • Validate API Key (GET /api/v1/apikey/validate): A lightweight endpoint to programmatically verify whether an API Key is currently valid and active on the Modellix platform.
  • Get Team Balance (GET /api/v1/team/balance): Retrieve the current available balance (in USD with 4 decimal places) for the team workspace associated with the API Key.

List Active Models Upgrade

  • Model Descriptions: The List Active Models endpoint (GET /api/v1/models) now returns a description field for each model dynamically, providing a quick summary of the model’s capabilities and use cases directly in the JSON response.
Jun 23, 2026

First Top-Up Discount, Concurrency Entitlements, and Account Deletion

First Top-Up: 10% Off Every Tier

Each top-up option now includes a 10% discount on your first purchase of that tier. Visit the Top Up page in the console to see available amounts and apply the discount at checkout.

Concurrency Entitlements

When a single top-up reaches a qualifying amount, your workspace unlocks higher concurrent task and RPM limits. Thresholds and current entitlements are listed on the Team Entitlements page.

Self-Service Account Deletion

You can now delete your account from the console without contacting support. Open your account settings and follow the deletion flow when you are ready to close your Modellix account.
We hope you stick around — but if you ever need to leave, you are in full control.
Jun 18, 2026

Explore Filtering and Playground Shortcuts

Model Explore: Series and Collections Filtering

The Model Explore page now supports filtering models by series and collections, making it easier to browse related models and discover what you need faster.

Playground Shortcuts

The Model Playground now includes a set of quick actions to streamline your workflow:
  • Copy model details: Copy the model’s Markdown documentation content or direct URL with one click.
  • Copy Modellix Skill install command: Instantly copy the npx skills add command for the current model.
  • One-click Skill installation: Install the Modellix Skill directly into Manus, Codex, Claude Cowork, or Cursor.
  • One-click AI chat: Open a conversation about the current model in ChatGPT, Claude, Grok, and other supported assistants.
  • One-click MCP installation: Install the Modellix MCP server into Cursor, Devin, or Windsurf.
Jun 17, 2026

Pricing Page, Model Search, Dashboard, and Request Logs

Public Pricing Page

We have launched a dedicated pricing page where pricing for every model supported on Modellix is publicly available. You can search and look up the price of any model directly on the page.Model search has been upgraded to deliver faster, more accurate results when you browse and discover models on Modellix.

Dashboard Improvements

The Dashboard now presents clearer, more detailed information and guidance. We have also added a convenient top-up entry so you can add funds without leaving your workflow.

Request Log Input Parameters

Request logs now record input parameters for each API call. You can view these parameters directly in the log details to help with debugging and auditing.
Jun 11, 2026

Simplified API Endpoints

We have updated all model API endpoints to provide a cleaner and more intuitive developer experience. The /async suffix has been removed from all model invocation paths.For example, POST /alibaba/qwen-image-edit-plus/async is now simply POST /alibaba/qwen-image-edit-plus.Backwards Compatibility: If you are currently using the /async endpoints, your integrations will not be affected. We have implemented full backwards compatibility, so existing applications will continue to function normally without requiring immediate updates.
Jun 10, 2026

Models API

We have introduced a new utility endpoint to help developers programmatically discover model availability on Modellix:
  • List Active Models: A new GET /api/v1/models endpoint that retrieves a rich JSON array of all currently active (published) models.

Key Fields Explained

Each model entry in the returned payload contains:
  • slug: The unique model identifier in provider/model_id format (e.g., google/nano-banana-2-edit).
  • type: The functional category of the model, supporting text-to-image, image-to-image, text-to-video, image-to-video, and video-to-video.
  • docs_url: Direct fully qualified URI to the model’s detailed developer integration documentation page.
For integration examples and the full OpenAPI schema spec, please head over to the List Active Models API reference.
May 18, 2026
  • Banner Notifications: You can now receive important updates and notifications via a banner displayed at the top of the page.
  • Team Settings: You can now configure basic information (like Team Name) and tax details for your workspace team, ensuring compliance and proper invoicing.
May 7, 2026

Explore and Playground Features Added

Modellix now supports Model Explore and Playground:
  • Explore: Users can search and query all models supported by Modellix.
  • Playground: Users can directly experience all models supported by Modellix.
Additionally, in this update, the pricing for all models has been explicitly published.
Apr 7, 2026

Modellix CLI

modellix-cli is now available — the official command-line tool for Modellix.

What You Can Do

  • List model types: modellix-cli model types to see all supported model types.
  • Create tasks: modellix-cli model invoke to submit async generation tasks with inline JSON or a file body.
  • Query results: modellix-cli task get <task_id> to poll task status and retrieve generation output.

Designed for Automation

The CLI is built for scripting and AI agent workflows. All commands support --json output, and authentication works via the MODELLIX_API_KEY environment variable or the --api-key flag.For full usage details, see the CLI documentation.
Apr 1, 2026

Modellix Is Now Live!

Modellix is officially launched! 🎉

Console

  • Usage: Rich visualizations with charts and lists to monitor your model API consumption on Modellix.
  • Top Up: Securely add funds via Stripe, with support for auto-recharge.
  • Order: A complete and clear view of every order you have placed.
  • Transaction: A complete and clear record of every transaction, including top-ups and consumption.
Fill out this form to receive $10 – 30 in bonus credits and become one of our first users!
Join our Discord community to connect with us.
Mar 12, 2026

Agent Skill

  • Updated SKILL.md to improve Skill accuracy.
  • Published the Skill to ClawHub.
Jan 26, 2026

Console

  • Registration and login, supporting Email OTP, Google and Github.
  • API Key management: supports creating, deleting, and viewing API Keys, which can be used to access the Model API.