Party Boxes
MITA SourceMod plugin for Left 4 Dead 2 that allows you to open upgrade boxes as party/fun boxes. A big work-in-progress!

Authentication
All requests are authenticated with a personal API key.
You need to log in to use the API.
After logging in, generate an API key from the panel API page and send it as a Bearer token.
Example request
curl "/api/content/mod/3" \
-H "Authorization: Bearer <YOUR_API_KEY>"Endpoints
Public read-only endpoints.
GET/api/content/modList items (paginated, filterable).
/api/content/modList items (paginated, filterable).
| Parameter | In | Required | Description |
|---|---|---|---|
| page | query | no | Page number (1-based). |
| limit | query | no | Items per page (clamped to your key limit). |
| mine | query | no | Set to 1 to return only items you own. |
| search | query | no | Filter by name. |
| tags | query | no | Comma-separated tag names. |
| categoryIds | query | no | Comma-separated category ids. |
| communityId | query | no | Scope to a community. |
| nsfw | query | no | Include NSFW (1/0). |
curl example
curl -v -X "GET" -H "Authorization: Bearer <YOUR_API_KEY>" /api/content/modGET/api/content/mod/3Fetch this item.
/api/content/mod/3Fetch this item.
No parameters — the item id in the path is all that's needed.
curl example
curl -v -X "GET" -H "Authorization: Bearer <YOUR_API_KEY>" /api/content/mod/3GET/api/content/mod/3/{relation}Read a relation set (tags | media | releases | links | installers | items).
/api/content/mod/3/{relation}Read a relation set (tags | media | releases | links | installers | items).
| Parameter | In | Required | Description |
|---|---|---|---|
| relation | path | yes | tags | media | releases | links | installers | items |
| page | query | no | Page number (1-based). |
| limit | query | no | Items per page. |
curl example
curl -v -X "GET" -H "Authorization: Bearer <YOUR_API_KEY>" /api/content/mod/3/{relation}