{"id":102082,"date":"2026-06-05T23:45:38","date_gmt":"2026-06-05T20:45:38","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/minecraft-sqlite-jdbc\/"},"modified":"2026-06-05T23:45:38","modified_gmt":"2026-06-05T20:45:38","slug":"minecraft-sqlite-jdbc","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/minecraft-sqlite-jdbc\/","title":{"rendered":"Minecraft SQLite JDBC"},"content":{"rendered":"<p># SQLite JDBC for Minecraft<\/p>\n<p>A maintained fork of the dormant SQLite JDBC for Minecraft mod, now tracking the **latest Xerial sqlite-jdbc release** with auto-bumps whenever upstream cuts a new version.<\/p>\n<p>The mod does nothing on its own \u2014 it ships the SQLite JDBC driver onto the server&#8217;s classpath so other plugins\/mods that want to read or write `.db`\/`.sqlite` files via JDBC don&#8217;t each have to bundle their own copy.<\/p>\n<p>Typical consumers: Dynmap, Plan, LuckPerms, Grim Anti-Cheat, and any plugin that wants embedded SQLite without redistributing 10MB of native binaries themselves.<\/p>\n<p>## What&#8217;s in the jar<\/p>\n<p>`org.xerial:sqlite-jdbc:3.53.0.0` plus minimal loader stubs for Spigot, Forge 1.12, Forge 1.13\u20131.16, Forge 1.17\u20131.20, NeoForge 1.21+, and Fabric. The driver classes stay at their canonical `org.sqlite.*` paths \u2014 no relocation \u2014 so consumers find them with plain `Class.forName(&#8220;org.sqlite.JDBC&#8221;)`. `META-INF\/services\/java.sql.Driver` is preserved so the driver auto-registers with `DriverManager`.<\/p>\n<p>The xerial driver bundles native SQLite binaries for every common platform\/architecture (linux x64\/aarch64, macos x64\/arm64, windows x64). They get extracted to the JVM&#8217;s tempdir on first use.<\/p>\n<p>## Compatibility<\/p>\n<p>| Loader | MC versions | Notes |<br \/>\n|&#8212;|&#8212;|&#8212;|<br \/>\n| Bukkit \/ Spigot \/ Paper \/ Folia \/ Purpur | 1.8 \u2192 current | drop into `plugins\/` |<br \/>\n| Fabric | 1.16.1 \u2192 current | needs Fabric Loader 0.14+ |<br \/>\n| Forge | 1.12 \u2192 1.20 | universal jar, no Mixins |<br \/>\n| NeoForge | 1.21 \u2192 current | drop into `mods\/` |<\/p>\n<p>Java 8+ required. Plain BukkitAPI servers without Java 8 (anything older than ~1.8.8) won&#8217;t be able to load any modern xerial release; that&#8217;s an upstream constraint, not this mod.<\/p>\n<p>### When you actually need this mod<\/p>\n<p>CraftBukkit\/Spigot\/Paper have shipped `sqlite-jdbc` on the server&#8217;s parent classloader since the 1.4-era ebeans commit. Plugin classloaders delegate parent-first, so for the **default JDBC path** (`Class.forName(&#8220;org.sqlite.JDBC&#8221;)` \/ `DriverManager.getConnection`) the bundled driver always wins, regardless of what&#8217;s in `plugins\/`. Tested empirically on Paper 1.12.2 and 1.21.11.<\/p>\n<p>You need this mod when:<\/p>\n<p>&#8211; You&#8217;re on **Fabric** or **NeoForge** \u2014 vanilla Minecraft ships no JDBC drivers at all<br \/>\n&#8211; You&#8217;re on a **Bukkit fork that&#8217;s stripped the bundled driver** (rare, but happens on minified server builds)<br \/>\n&#8211; You want a **newer SQLite engine version than your server bundles** \u2014 for `RETURNING`, `STRICT` tables, modern UPSERT on a 1.8\u20131.12 server, or just to track the latest Xerial release. See [Using a newer engine via the public API](#using-a-newer-engine-via-the-public-api) below.<\/p>\n<p>### Using a newer engine via the public API<\/p>\n<p>The default path uses the bundled driver. To use *this* mod&#8217;s driver instead, your plugin softdepends on this holder and calls `MinecraftSqliteJdbc.connect(url)` directly:<\/p>\n<p>&#8220;`java<br \/>\n\/\/ in your plugin.yml<br \/>\nsoftdepend: [sqlite-jdbc]<br \/>\n&#8220;`<\/p>\n<p>&#8220;`java<br \/>\n\/\/ in your plugin code<br \/>\nConnection c;<br \/>\ntry {<br \/>\n    c = MinecraftSqliteJdbc.connect(&#8220;jdbc:sqlite:foo.db&#8221;);<br \/>\n} catch (NoClassDefFoundError | ClassNotFoundException notInstalled) {<br \/>\n    \/\/ holder isn&#8217;t installed \u2014 fall back to the bundled driver<br \/>\n    c = DriverManager.getConnection(&#8220;jdbc:sqlite:foo.db&#8221;);<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>`MinecraftSqliteJdbc` wraps a child-first `URLClassLoader` pointing at this jar&#8217;s URL, parented to the platform classloader so `org.sqlite.*` must come from this jar (not the bundled chain). The returned `Connection` is a standard `java.sql.Connection` \u2014 keep your casts to `java.sql.*` interfaces; the impl class `org.sqlite.SQLiteConnection` lives in the child-first classloader and won&#8217;t down-cast across the boundary.<\/p>\n<p>Verified on Paper 1.12.2 (bundled engine 3.21.0) \u2014 same JVM, same boot:<\/p>\n<p>&#8220;`<br \/>\nbaseline DriverManager.getConnection \u2192 engine 3.21.0<br \/>\nMinecraftSqliteJdbc.connect()        \u2192 engine 3.53.0<br \/>\n&#8220;`<\/p>\n<p>API surface (all static):<\/p>\n<p>| Method | Returns |<br \/>\n|&#8212;|&#8212;|<br \/>\n| `connect(String url)` | open `Connection` through this driver |<br \/>\n| `connect(String url, Properties props)` | as above with props |<br \/>\n| `driver()` | the `java.sql.Driver` instance |<br \/>\n| `engineVersion()` | SQLite engine version (e.g. `&#8221;3.53.0&#8243;`) |<br \/>\n| `driverVersion()` | driver version string (e.g. `&#8221;3.53.0.0&#8243;`) |<br \/>\n| `eagerInit()` | warm the classloader at plugin enable |<br \/>\n| `shutdown()` | release file handles + JNI on plugin disable |<\/p>\n<p>Grim Anti-Cheat&#8217;s SQLite backend uses this API automatically when this holder is installed and ships a newer engine than the bundled one \u2014 see Grim&#8217;s Database wiki page.<\/p>\n<p>### Bundled SQLite engine versions on common Bukkit lines<\/p>\n<p>For reference if you&#8217;re wondering what engine version your server actually ships:<\/p>\n<p>| CraftBukkit \/ Paper line | Bundled SQLite engine |<br \/>\n|&#8212;|&#8212;|<br \/>\n| 1.8 \u2013 1.10 | 3.7.2 |<br \/>\n| 1.11 | 3.16.1 |<br \/>\n| 1.12 | 3.21.0.1 |<br \/>\n| 1.13 | 3.25.2 |<br \/>\n| 1.14 | 3.28.0 |<br \/>\n| 1.15 | 3.30.1 |<br \/>\n| 1.16 \u2013 1.17 | 3.34.0 |<br \/>\n| 1.20.6 | 3.45.3.0 |<br \/>\n| Paper 1.21.4 | 3.47.0.0 |<br \/>\n| Paper 1.21.5 \u2013 1.21.11 | 3.49.1.0 |<br \/>\n| master \/ 26.x | 3.51.3.0 |<\/p>\n<p>This mod ships engine 3.53.0.0 (or whatever the latest xerial release is), but **none of that matters on Bukkit-family servers** \u2014 the bundled engine is what actually runs your queries. If you need a newer engine for features like `RETURNING` (3.35+) or `STRICT` tables (3.37+), upgrade to a Paper version that bundles a recent enough driver, or move that workload to Fabric\/NeoForge where you can control the driver.<\/p>\n<p>## Using it from a plugin or mod<\/p>\n<p>Declare sqlite-jdbc as `compileOnly`:<\/p>\n<p>&#8220;`kotlin<br \/>\ncompileOnly(&#8220;org.xerial:sqlite-jdbc:3.53.0.0&#8221;)<br \/>\n&#8220;`<\/p>\n<p>Probe at startup:<\/p>\n<p>&#8220;`java<br \/>\ntry {<br \/>\n    Class.forName(&#8220;org.sqlite.JDBC&#8221;);<br \/>\n} catch (ClassNotFoundException e) {<br \/>\n    getLogger().warning(&#8220;SQLite backend disabled \u2014 install minecraft-sqlite-jdbc&#8221;);<br \/>\n    return;<br \/>\n}<br \/>\ntry (Connection c = DriverManager.getConnection(&#8220;jdbc:sqlite:&#8221; + dataDir.resolve(&#8220;data.db&#8221;))) {<br \/>\n    \/\/ &#8230;<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>On Paper 1.17+ each plugin&#8217;s classloader is isolated. Add this mod to your `plugin.yml` `softdepend` so the driver classes are visible to your plugin:<\/p>\n<p>&#8220;`yaml<br \/>\nsoftdepend: [minecraft-sqlite-jdbc]<br \/>\n&#8220;`<\/p>\n<p>Fabric and NeoForge unify all mods on one classloader, so no equivalent declaration is needed there.<\/p>\n<p>## Versioning<\/p>\n<p>The jar version tracks Xerial&#8217;s `sqlite-jdbc` release one-to-one. `3.53.0.0+2026-04-14` ships engine 3.53.0.0; the suffix is the build date. A scheduled GitHub Action checks Maven Central daily \u2014 when xerial cuts a new release, an auto-merge PR opens here and the Modrinth release goes out automatically.<\/p>\n<p>## License<\/p>\n<p>Apache 2.0 (Xerial \/ Taro L. Saito). The repackage adds no functional changes and inherits that license. Full text in `LICENSE`.<\/p>\n<p>&#8212;<\/p>\n<p>Issues, source: GitHub.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Up-to-date SQLite JDBC driver wrapped as a universal Forge\/Fabric\/Bukkit library for plugins like Dynmap and Grim.<\/p>\n","protected":false},"featured_media":102083,"template":"","meta":{"_minecraft_slug":"minecraft-sqlite-jdbc","_minecraft_project_id":"bTTf2DEw","_minecraft_author":"Axionize","_minecraft_license":"Apache-2.0","_minecraft_downloads":14396,"_minecraft_follows":18,"_minecraft_client_side":"optional","_minecraft_server_side":"optional","_minecraft_storage_type":"zip","_minecraft_archive_name":"minecraft-sqlite-jdbc.zip","_minecraft_size_bytes":152963372,"_minecraft_version_count":11,"_minecraft_updated_at":"2026-05-15T22:40:28.047847Z","_minecraft_date_created":"2025-04-22T01:55:40.653457Z","_minecraft_date_modified":"2026-05-07T18:07:47.837215Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/minecraft-sqlite-jdbc","_minecraft_icon_attachment_id":102083,"_minecraft_imported_at":"2026-06-05T20:45:39+00:00","_minecraft_import_hash":"d215fbabcf1a90fb2054715a8443d8fe","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[124,97,125,104,873,158,90,127,128,98,129,92],"mod_loader":[130,99,131,106,160,132,133,100,134],"minecraft_version":[385,438,446,449,110,111,112,113,114,115,116,117,118,119,120,46,47,48,49,50,51,52,53,54,55,56,57,58,59,36,60,93,94,101,102,62,37,40,41,73,74,38,78,79,80,81,82,83,167,163],"class_list":["post-102082","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-bukkit","mod_category-fabric","mod_category-folia","mod_category-forge","mod_category-library","mod_category-neoforge","mod_category-optimization","mod_category-paper","mod_category-purpur","mod_category-quilt","mod_category-spigot","mod_category-utility","mod_loader-bukkit","mod_loader-fabric","mod_loader-folia","mod_loader-forge","mod_loader-neoforge","mod_loader-paper","mod_loader-purpur","mod_loader-quilt","mod_loader-spigot","minecraft_version-1-12-2","minecraft_version-1-13","minecraft_version-1-13-1","minecraft_version-1-13-2","minecraft_version-1-14","minecraft_version-1-14-1","minecraft_version-1-14-2","minecraft_version-1-14-3","minecraft_version-1-14-4","minecraft_version-1-15","minecraft_version-1-15-1","minecraft_version-1-15-2","minecraft_version-1-16","minecraft_version-1-16-1","minecraft_version-1-16-2","minecraft_version-1-16-3","minecraft_version-1-16-4","minecraft_version-1-16-5","minecraft_version-1-17","minecraft_version-1-17-1","minecraft_version-1-18","minecraft_version-1-18-1","minecraft_version-1-18-2","minecraft_version-1-19","minecraft_version-1-19-1","minecraft_version-1-19-2","minecraft_version-1-19-3","minecraft_version-1-19-4","minecraft_version-1-20","minecraft_version-1-20-1","minecraft_version-1-20-2","minecraft_version-1-20-3","minecraft_version-1-20-4","minecraft_version-1-20-5","minecraft_version-1-20-6","minecraft_version-1-21","minecraft_version-1-21-1","minecraft_version-1-21-10","minecraft_version-1-21-11","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-1-21-6","minecraft_version-1-21-7","minecraft_version-1-21-8","minecraft_version-1-21-9","minecraft_version-26-1","minecraft_version-26-1-1","minecraft_version-26-1-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Minecraft SQLite JDBC - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/minecraft-sqlite-jdbc\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Minecraft SQLite JDBC - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Up-to-date SQLite JDBC driver wrapped as a universal Forge\/Fabric\/Bukkit library for plugins like Dynmap and Grim.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/minecraft-sqlite-jdbc\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/minecraft-sqlite-jdbc\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/minecraft-sqlite-jdbc\\\/\",\"name\":\"Minecraft SQLite JDBC - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/minecraft-sqlite-jdbc\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/minecraft-sqlite-jdbc\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/minecraft-sqlite-jdbc-icon-252c0d58df961ede27792f47978ad9bbb697957e_96.webp\",\"datePublished\":\"2026-06-05T20:45:38+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/minecraft-sqlite-jdbc\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/minecraft-sqlite-jdbc\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/minecraft-sqlite-jdbc\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/minecraft-sqlite-jdbc-icon-252c0d58df961ede27792f47978ad9bbb697957e_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/minecraft-sqlite-jdbc-icon-252c0d58df961ede27792f47978ad9bbb697957e_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/minecraft-sqlite-jdbc\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Minecraft SQLite JDBC\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Minecraft SQLite JDBC - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/minecraft-sqlite-jdbc\/","og_locale":"en_US","og_type":"article","og_title":"Minecraft SQLite JDBC - Minecraft","og_description":"Up-to-date SQLite JDBC driver wrapped as a universal Forge\/Fabric\/Bukkit library for plugins like Dynmap and Grim.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/minecraft-sqlite-jdbc\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/minecraft-sqlite-jdbc\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/minecraft-sqlite-jdbc\/","name":"Minecraft SQLite JDBC - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/minecraft-sqlite-jdbc\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/minecraft-sqlite-jdbc\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/minecraft-sqlite-jdbc-icon-252c0d58df961ede27792f47978ad9bbb697957e_96.webp","datePublished":"2026-06-05T20:45:38+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/minecraft-sqlite-jdbc\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/minecraft-sqlite-jdbc\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/minecraft-sqlite-jdbc\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/minecraft-sqlite-jdbc-icon-252c0d58df961ede27792f47978ad9bbb697957e_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/minecraft-sqlite-jdbc-icon-252c0d58df961ede27792f47978ad9bbb697957e_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/minecraft-sqlite-jdbc\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"Minecraft SQLite JDBC"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/102082","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/102083"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=102082"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=102082"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=102082"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=102082"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}