MetalPipeSFX-ThunderstoreAPI icon

ThunderstoreAPI

A simple API to access all the packages on the store.

Last updated 11 months ago
Total downloads 1344
Total rating 0 
Categories Libraries
Dependency string MetalPipeSFX-ThunderstoreAPI-1.0.0
Dependants 0 other packages depend on this package

README

Thunderstore API!

This mod simply pings the Thunderstore API for a list of all packages on the store for Lethal Company

Does not have ANY dependencies.

Just use:

using Thunderstore_API;

and:

Package[] packages = await ThunderstoreAPI.ReturnThunderstorePackages();

This package can run async, so that it slows down the game and their computer less, although its only like 40-50MB.

Lets Take my mod HornMoan [ I Know (; ) ] for example:

public async void FindHorn()
{
    Package horn = await ThunderstoreAPI.ReturnThunderstorePackageByName("HornMoan");
}

It will output in this schema:

{
  "name": "HornMoan",
  "full_name": "MetalPipeSFX-HornMoan",
  "owner": "MetalPipeSFX",
  "package_url": "https://thunderstore.io/c/lethal-company/p/MetalPipeSFX/HornMoan/",
  "donation_link": null,
  "date_created": "2023-11-23T19:17:14.428404Z",
  "date_updated": "2023-11-25T08:04:23.643426Z",
  "uuid4": "b9b8ea31-7b97-4efd-9ecb-a361437a7f92",
  "rating_score": "9",
  "is_pinned": "false",
  "is_deprecated": "false",
  "has_nsfw_content": "false",
  "categories": [ "BepInEx", "Mods" ],
  "versions": [
    
    {
      "name": "HornMoan",
      "full_name": "MetalPipeSFX-HornMoan-2.0.0",
      "description": "Airhorn is replaced with the much better pornhub moan",
      "icon": "https://gcdn.thunderstore.io/live/repository/icons/MetalPipeSFX-HornMoan-2.0.0.png",
      "version_number": "2.0.0",
      "dependencies": [ "BepInEx-BepInExPack-5.4.2100" ],
      "download_url": "https://thunderstore.io/package/download/MetalPipeSFX/HornMoan/2.0.0/",
      "downloads": 131495,
      "date_created": "2023-11-25T08:04:23.398891+00:00",
      "website_url": null,
      "is_active": true,
      "uuid4": "f6c919fb-1d21-4010-a874-1fff248c4fe4",
      "file_size": 151722
    },
    {
      "name": "HornMoan",
      "full_name": "MetalPipeSFX-HornMoan-1.5.1",
      "description": "Airhorn is replaced with the much better pornhub moan",
      "icon": "https://gcdn.thunderstore.io/live/repository/icons/MetalPipeSFX-HornMoan-1.5.1.png",
      "version_number": "1.5.1",
      "dependencies": [ "BepInEx-BepInExPack-5.4.2100" ],
      "download_url": "https://thunderstore.io/package/download/MetalPipeSFX/HornMoan/1.5.1/",
      "downloads": 4743,
      "date_created": "2023-11-24T07:18:47.543448+00:00",
      "website_url": null,
      "is_active": true,
      "uuid4": "831a12ad-b8b8-4139-9c24-b8e7d0304eea",
      "file_size": 151536
    },
    {
      "name": "HornMoan",
      "full_name": "MetalPipeSFX-HornMoan-1.5.0",
      "description": "Airhorn is replaced with the much better pornhub moan",
      "icon": "https://gcdn.thunderstore.io/live/repository/icons/MetalPipeSFX-HornMoan-1.5.0.png",
      "version_number": "1.5.0",
      "dependencies": [ "BepInEx-BepInExPack-5.4.2100" ],
      "download_url": "https://thunderstore.io/package/download/MetalPipeSFX/HornMoan/1.5.0/",
      "downloads": 159,
      "date_created": "2023-11-24T06:39:48.02987+00:00",
      "website_url": null,
      "is_active": true,
      "uuid4": "bc687ade-8605-4e4e-bbec-a8ecbc45436c",
      "file_size": 151505
    },
    {
      "name": "HornMoan",
      "full_name": "MetalPipeSFX-HornMoan-1.0.0",
      "description": "Airhorn is replaced with the much better pornhub moan",
      "icon": "https://gcdn.thunderstore.io/live/repository/icons/MetalPipeSFX-HornMoan-1.0.0.png",
      "version_number": "1.0.0",
      "dependencies": [ "BepInEx-BepInExPack-5.4.2100" ],
      "download_url": "https://thunderstore.io/package/download/MetalPipeSFX/HornMoan/1.0.0/",
      "downloads": 1753,
      "date_created": "2023-11-23T19:17:15.2237+00:00",
      "website_url": null,
      "is_active": true,
      "uuid4": "9eeb5a8b-748b-4cb9-bc6b-189a3c48d678",
      "file_size": 76795
    }
  ]}