Quantified API
Rank 645
Rank 447 among mods

Quick rating

Quantified API

Overall rating distribution
0.5★ (no ratings)
1.0★ (no ratings)
1.5★ (no ratings)
2.0★ (no ratings)
2.5★ (no ratings)
3.0★ (no ratings)
3.5★ (no ratings)
4.0★ (no ratings)
4.5★ (no ratings)
1 rating (100%) · 5.0★
0.5★ 5★
Gameplay
0.0
Aesthetics
0.0
Performance
0.0

A high-performance API for Minecraft mods, built to handle tasks efficiently, reduce lag, use GPU acceleration, smart caching, and multithreading - keeping your game smooth and stable.

No Theme
No Genre
API/Library
Mod Loaders
Forge
NeoForge
Fabric
Minecraft
26.2

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Required
Server Required

About

Project Details

Type
Mod
License
BRSSLA V1.5
Latest Version
quantified api-omni-2.2.0.jar
Authors
CurseForge
Modrinth

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

《▓ Quantified API ▓》

Quantified API Banner

Quantified API, or QAPI, is a performance framework for mods that do a bit more than just slap random async onto everything and pray it doesn't implode xd

Its goal is pretty simple: stop mods from frying the main thread and provide one shared runtime that can properly manage CPU work, parallel tasks, caching, dependency graphs, and GPU acceleration without turning the game into a deadlock simulator.

《▒ Welcome to the New Generation ▒》

With the release of V2, Quantified API has been upgraded by a LOT.

The scheduler, CPU runtime, caching system, task graphs, GPU routing, compatibility layer, supported platforms, build system, and general API design have all been heavily improved or completely rebuilt.

Quantified API now also has full official documentation, covering everything from basic installation to advanced compute workloads, GPU routing, caching, migration, troubleshooting, and examples :DDD

Explore the new Quantified API documentation

《▒ What It Actually Does ▒》

  • Proper async scheduling with worker lanes, workload routing, telemetry, and sane fallback behaviour
  • Parallel execution for workloads that can be safely divided across multiple CPU threads
  • Dependency-aware task graphs for workflows where jobs need to run in a specific order
  • Backend-aware compute routing across CPU, Vulkan, and OpenCL
  • Duplicate task suppression so repeated identical work can be merged instead of executed hundreds of times
  • Advanced caching with memory, disk, persistence, expiration, compression, and refresh support
  • Automatic mod registration through Fabric, Forge, and NeoForge metadata
  • Live diagnostics through runtime telemetry and the Quantified webpanel

《▒ Vulkan and OpenCL Acceleration ▒》

Quantified API provides Vulkan compute acceleration that simply works without requiring users to manually configure a bunch of random settings first.

Vulkan is the preferred GPU backend, while OpenCL remains available as a compatibility and fallback option.

GPU acceleration isn't blindly used for every tiny task either. Quantified API considers the workload, runtime state, available hardware, and preferred backend before deciding where the work should run.

  • Isolated Vulkan probing so broken drivers or loader issues don't instantly brick the game
  • Deferred initialization so GPU startup doesn't fight with Minecraft while the game is still loading
  • Cleaner runtime states so failed or half-initialized backends aren't treated as ready
  • Automatic fallback routing from Vulkan to OpenCL and finally to CPU when needed
  • Device selection and diagnostics through the Quantified webpanel

《▒ Faster Runtime ▒》

The runtime underneath Quantified API was heavily redesigned to reduce the amount of overhead added around the work mods actually want to execute.

  • Lower overhead for tiny and unique tasks
  • Much stronger duplicate burst suppression
  • Cheaper parallel workload orchestration
  • Massively faster execution for smaller task graphs
  • Better handling of thread-safe and non-thread-safe workloads
  • Improved persistent and asynchronous cache behaviour

Basically, it now spends a lot less time managing work and a lot more time actually doing it. Crazy idea, ik xd

《▒ Performance Improvements ▒》

Internal runtime benchmarks against the older v1.4.4 release showed major improvements across all tested workload types.

  • Tiny unique task bursts: around 3.95x faster
  • Duplicate task bursts: around 45.4x faster
  • Small parallel workloads: around 5.54x faster
  • Medium parallel workloads: around 9.16x faster
  • Small DAG workloads: up to around 2952x faster in the tested setup

Duplicate suppression also improved from 2048 real executions to only 1 real execution in the tested duplicate burst.

So yh, V2 wasn't exactly a small update :DDD

《▒ Quantified Webpanel ▒》

Quantified API includes a live webpanel so developers and users can see what the runtime is actually doing instead of blindly trusting the mysterious background threads.

It can be enabled through the config or with /quantified webpanel.

  • Scheduler and queue activity
  • CPU and GPU backend states
  • Connected mod usage
  • Vulkan and OpenCL diagnostics
  • Preferred GPU and backend selection
  • Diagnostics export for easier debugging
  • Optional authentication and HTTPS support

《▒ Compatibility ▒》

  • Supports Fabric, Forge, and NeoForge
  • Supports Minecraft versions from 1.20.1 through the currently supported 1.21.X and 1.26.X platform lines
  • Vulkan is completely optional and degrades cleanly when unavailable
  • OpenCL remains available for older or less compatible hardware
  • CPU execution is always available as the final fallback
  • Mods made for the older V1 API can continue working through the compatibility layer
  • Automatic loader metadata detection reduces manual setup for developers

《▒ Official Documentation ▒》

Quantified API now has proper official documentation for both new and existing developers.

It covers installation, supported platforms, compute workloads, parallel processing, task graphs, caching, Vulkan and OpenCL routing, compatibility, migration, troubleshooting, and full examples.

Explore the Quantified API Documentation

《▒ Licensing and Support ▒》

Licensed under BRSSLA V1.5, which is free for personal and non-commercial use.

Mod developers who include Quantified API as a dependency automatically gain Commercial Rights for their mod.

Quantified API is built to be flexible, easy to integrate, and as user-friendly as possible while still giving developers proper control over their workloads.

If you have any requests, ideas, documentation improvements, or found a bug, feel free to open a GitHub issue or even a pull request :]

Developed and Maintained by Admany - BlackRift Studios 2026

《▓ Quantified API ▓》

Quantified API Banner

Quantified API, or QAPI, is a performance framework for mods that do a bit more than just slap random async onto everything and pray it doesn't implode xd

Its goal is pretty simple: stop mods from frying the main thread and provide one shared runtime that can properly manage CPU work, parallel tasks, caching, dependency graphs, and GPU acceleration without turning the game into a deadlock simulator.

《▒ Welcome to the New Generation ▒》

With the release of V2, Quantified API has been upgraded by a LOT.

The scheduler, CPU runtime, caching system, task graphs, GPU routing, compatibility layer, supported platforms, build system, and general API design have all been heavily improved or completely rebuilt.

Quantified API now also has full official documentation, covering everything from basic installation to advanced compute workloads, GPU routing, caching, migration, troubleshooting, and examples :DDD

Explore the new Quantified API documentation

《▒ What It Actually Does ▒》

  • Proper async scheduling with worker lanes, workload routing, telemetry, and sane fallback behaviour
  • Parallel execution for workloads that can be safely divided across multiple CPU threads
  • Dependency-aware task graphs for workflows where jobs need to run in a specific order
  • Backend-aware compute routing across CPU, Vulkan, and OpenCL
  • Duplicate task suppression so repeated identical work can be merged instead of executed hundreds of times
  • Advanced caching with memory, disk, persistence, expiration, compression, and refresh support
  • Automatic mod registration through Fabric, Forge, and NeoForge metadata
  • Live diagnostics through runtime telemetry and the Quantified webpanel

《▒ Vulkan and OpenCL Acceleration ▒》

Quantified API provides Vulkan compute acceleration that simply works without requiring users to manually configure a bunch of random settings first.

Vulkan is the preferred GPU backend, while OpenCL remains available as a compatibility and fallback option.

GPU acceleration isn't blindly used for every tiny task either. Quantified API considers the workload, runtime state, available hardware, and preferred backend before deciding where the work should run.

  • Isolated Vulkan probing so broken drivers or loader issues don't instantly brick the game
  • Deferred initialization so GPU startup doesn't fight with Minecraft while the game is still loading
  • Cleaner runtime states so failed or half-initialized backends aren't treated as ready
  • Automatic fallback routing from Vulkan to OpenCL and finally to CPU when needed
  • Device selection and diagnostics through the Quantified webpanel

《▒ Faster Runtime ▒》

The runtime underneath Quantified API was heavily redesigned to reduce the amount of overhead added around the work mods actually want to execute.

  • Lower overhead for tiny and unique tasks
  • Much stronger duplicate burst suppression
  • Cheaper parallel workload orchestration
  • Massively faster execution for smaller task graphs
  • Better handling of thread-safe and non-thread-safe workloads
  • Improved persistent and asynchronous cache behaviour

Basically, it now spends a lot less time managing work and a lot more time actually doing it. Crazy idea, ik xd

《▒ Performance Improvements ▒》

Internal runtime benchmarks against the older v1.4.4 release showed major improvements across all tested workload types.

  • Tiny unique task bursts: around 3.95x faster
  • Duplicate task bursts: around 45.4x faster
  • Small parallel workloads: around 5.54x faster
  • Medium parallel workloads: around 9.16x faster
  • Small DAG workloads: up to around 2952x faster in the tested setup

Duplicate suppression also improved from 2048 real executions to only 1 real execution in the tested duplicate burst.

So yh, V2 wasn't exactly a small update :DDD

《▒ Quantified Webpanel ▒》

Quantified API includes a live webpanel so developers and users can see what the runtime is actually doing instead of blindly trusting the mysterious background threads.

It can be enabled through the config or with /quantified webpanel.

  • Scheduler and queue activity
  • CPU and GPU backend states
  • Connected mod usage
  • Vulkan and OpenCL diagnostics
  • Preferred GPU and backend selection
  • Diagnostics export for easier debugging
  • Optional authentication and HTTPS support

《▒ Compatibility ▒》

  • Supports Fabric, Forge, and NeoForge
  • Supports Minecraft versions from 1.20.1 through the currently supported 1.21.X and 1.26.X platform lines
  • Vulkan is completely optional and degrades cleanly when unavailable
  • OpenCL remains available for older or less compatible hardware
  • CPU execution is always available as the final fallback
  • Mods made for the older V1 API can continue working through the compatibility layer
  • Automatic loader metadata detection reduces manual setup for developers

《▒ Official Documentation ▒》

Quantified API now has proper official documentation for both new and existing developers.

It covers installation, supported platforms, compute workloads, parallel processing, task graphs, caching, Vulkan and OpenCL routing, compatibility, migration, troubleshooting, and full examples.

Explore the Quantified API Documentation

《▒ Licensing and Support ▒》

Licensed under BRSSLA V1.5, which is free for personal and non-commercial use.

Mod developers who include Quantified API as a dependency automatically gain Commercial Rights for their mod.

Quantified API is built to be flexible, easy to integrate, and as user-friendly as possible while still giving developers proper control over their workloads.

If you have any requests, ideas, documentation improvements, or found a bug, feel free to open a GitHub issue or even a pull request :]

Developed and Maintained by Admany - BlackRift Studios 2026

Screenshots

Gallery

  • qapidashlogin.png
    qapidashlogin.png qapidashlogin.png
  • qapiwebpaneldashboard.jpeg
    qapiwebpaneldashboard.jpeg Screenshot_25-6-2026_222755_127.0.0.1.jpeg
  • qapidashsystemsection.png
    qapidashsystemsection.png qapidashsystemsection.png

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

1
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

1.1m
Total Downloads
CurseForge
1.1m
Modrinth
~37,000
Last Updated
CurseForge
Modrinth
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works