GET
/
items
curl --request GET \
  --url https://forgegames.org/api/items \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "thumbnail": "<string>",
    "rollNumerator": 123,
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "teamId": "<string>",
    "classifiers": [
      {
        "classifierId": "<string>",
        "classifierOption": {
          "id": "<string>",
          "name": "<string>",
          "dropRateMultiplier": 123,
          "classifierId": "<string>"
        }
      }
    ],
    "attributes": [
      {
        "id": "<string>",
        "itemId": "<string>",
        "attributeId": "<string>",
        "min": 123,
        "max": 123
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

200
application/json
Successful response

The response is of type object[].