Skip to main content
GET
/
Item
/
{YourAPIKEY}
/
{ProjectGuid}
/
{TokenID}
Get the items a user has. It will return all the items on any chain and/or db
curl --request GET \
  --url https://intern.payingame.io/rest/PayIngame/PublicAPI/Item/{YourAPIKEY}/{ProjectGuid}/{TokenID}
{
  "isError": "0",
  "Error": "",
  "Items": [
    {
      "Chain": "DB",
      "Attributes": [
        {
          "IsDynamic": true,
          "Value": "80%",
          "Name": "Shield"
        },
        {
          "IsDynamic": true,
          "Value": "Uncommon",
          "Name": "Type"
        },
        {
          "IsDynamic": true,
          "Value": "100%",
          "Name": "Weapon"
        },
        {
          "IsDynamic": true,
          "Value": "100%",
          "Name": "Damage"
        }
      ],
      "ChainSymbol": "DB",
      "Guid": "FB19FF83-CBA6-98C8-6249-1FC436D71D26",
      "Name": "DB Item",
      "TokenID": "8199752919166479225"
    }
  ]
}
Will give back the detail of an item based on the token ID.

Path Parameters

YourAPIKEY
string
required
ProjectGuid
string
required
TokenID
string
required

Response

200 - application/json

List of items a user currently has across all chains and db.

isError
string
Example:

"0"

Error
string
Example:

""

Items
object[]