Documentation for the publicly available APIs to gather data related to the Mojang lawsuit.
Find a file
2025-12-16 01:57:33 +02:00
LICENSE Initial commit 2025-12-16 01:45:33 +02:00
README.md Update README.md 2025-12-16 01:57:33 +02:00

Public APIs

Documentation for the publicly available APIs to gather data related to the Mojang lawsuit.

Funding

GET https://total-api.lawsuit.gg/ - Get the total amount raised on Gofundme

Response

interface Response {
    total: string; // Pretty formatted USD value. Conversion rate automatically updated
    skr: number; // Raw integer in Swedish krona
}

Example:

{
    "total":"$157,836.30",
    "skr":1463697
}