v6

latestOpenAPI 3.0.0raw.githubusercontent.com2026-08-01326.0 KB
v1

Get various information about mods known to be incompatible with Quilt.

get/v1/incompatible-mods.json

Response

List of incompatible mods.

idsstring[] required

The mod IDs that are known to be incompatible with Quilt.

namestring required

The name of the mod.

type'GAME' | 'OTHERS' | 'SELF' | 'WORKAROUND' required

The type of incompatibility:

  • GAME: Breaks the game in an unrecoverable way.
  • OTHERS: Breaks other mods in an unrecoverable way.
  • SELF: Causes non-fatal errors or broken features in the mod itself.
  • WORKAROUND: Requires a workaround to function properly. Please see the attached note.
status'UNKNOWN' | 'WONT_FIX' | 'IN_PROGRESS' | 'BLOCKED' | 'NO_ANSWER' | 'ON_HOLD' required

The status of the incompatibility:

  • UNKNOWN: The status of the incompatibility is unknown, due to a lack of report or the inability for us to find it.
  • WONT_FIX: The incompatibility is known, but the mod authors have stated they won't fix it.
  • IN_PROGRESS: The incompatibility is known, and the mod authors are working on a fix.
  • BLOCKED: The incompatibility is known, but the fix is blocked by an external factor.
  • NO_ANSWER: The mod authors have not responded yet to the report.
  • ON_HOLD: The incompatibility is known, but the mod authors wish to wait before implementing a fix.
trackingstring required

The tracking URL for the report. Set to UNKNOWN if the tracking URL is not available.

iconstring required

The URL to the mod's icon. Solely for display purposes.

notestring

A note about the incompatibility. May not be present.

Example response

[
  {
    "ids": [
      "modid1",
      "modid2"
    ],
    "name": "Example Mod",
    "type": "GAME",
    "status": "IN_PROGRESS",
    "tracking": "https://example.com/tracking",
    "icon": "https://example.com/icon.png",
    "note": "This mod made an oopsie and used fabric internals."
  }
]
All 3 operations