Index: TFP-WebServer/WebServer/src/WebAPI/APIs/GameData/Item.openapi.yaml
===================================================================
--- TFP-WebServer/WebServer/src/WebAPI/APIs/GameData/Item.openapi.yaml	(revision 460)
+++ TFP-WebServer/WebServer/src/WebAPI/APIs/GameData/Item.openapi.yaml	(revision 460)
@@ -0,0 +1,54 @@
+openapi: 3.1.0
+info:
+  title: Item
+  version: '1'
+
+components:
+  schemas:
+    ItemElement:
+      type: object
+      properties:
+        name:
+          type: string
+          examples:
+            - woodShapes:VariantHelper
+        localizedName:
+          type: string
+          examples:
+            - Wood Block
+        isBlock:
+          type: boolean
+      required:
+        - name
+        - localizedName
+        - isBlock
+
+    ItemList:
+      type: array
+      items:
+        $ref: '#/components/schemas/ItemElement'
+
+
+paths:
+  /api/item:
+    get:
+      tags:
+        - GameData
+      summary: Items list
+      description: Fetch a list of defined items
+      operationId: item.get
+      responses:
+        200:
+          description: List of items
+          content:
+            application/json:
+              schema:
+                type: object
+                properties:
+                  data:
+                    $ref: '#/components/schemas/ItemList'
+                  meta:
+                    $ref: './openapi.yaml#/components/schemas/ResultEnvelopeMeta'
+                required:
+                  - data
+                  - meta
Index: TFP-WebServer/WebServer/src/WebAPI/APIs/GameData/Mods.openapi.yaml
===================================================================
--- TFP-WebServer/WebServer/src/WebAPI/APIs/GameData/Mods.openapi.yaml	(revision 460)
+++ TFP-WebServer/WebServer/src/WebAPI/APIs/GameData/Mods.openapi.yaml	(revision 460)
@@ -0,0 +1,83 @@
+openapi: 3.1.0
+info:
+  title: Mods
+  version: '1'
+
+components:
+  schemas:
+    ModElement:
+      type: object
+      properties:
+        name:
+          type: string
+          examples:
+            - TFP_WebServer
+        displayName:
+          type: string
+          examples:
+            - Web Dashboard
+        description:
+          type: string
+          examples:
+            - Integrated Webserver for the Web Dashboard and server APIs
+        author:
+          type: string
+          examples:
+            - The Fun Pimps LLC
+        version:
+          type: string
+          examples:
+            - 21.1.15.0
+        website:
+          type: string
+          format: uri
+          examples:
+            - ''
+        web:
+          type: object
+          properties:
+            bundle:
+              type: string
+              examples:
+                - /webmods/Xample_MarkersMod/bundle.js
+            css:
+              type: string
+              examples:
+                - /webmods/Xample_MarkersMod/styling.css
+      required:
+        - name
+        - displayName
+        - description
+        - author
+        - version
+        - website
+
+    ModsList:
+      type: array
+      items:
+        $ref: '#/components/schemas/ModElement'
+
+
+paths:
+  /api/mods:
+    get:
+      tags:
+        - GameData
+      summary: Mods list
+      description: Fetch a list of loaded mods
+      operationId: mods.get
+      responses:
+        200:
+          description: List of mods
+          content:
+            application/json:
+              schema:
+                type: object
+                properties:
+                  data:
+                    $ref: '#/components/schemas/ModsList'
+                  meta:
+                    $ref: './openapi.yaml#/components/schemas/ResultEnvelopeMeta'
+                required:
+                  - data
+                  - meta
