SteamSets
ApiAccount

Get Data Points

POST
/account.v1.AccountService/GetDataPoints
/account.v1.AccountService/GetDataPoints

The Authorization access token

Authorization

Authorization
Required
Bearer <token>

In: header

Request Body

application/jsonRequired

idobject

vanityobject

curl -X POST "https://api.steamsets.com/account.v1.AccountService/GetDataPoints" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "id": {
      "accountId": 0,
      "steamId64": "stringstringstrin"
    },
    "vanity": {
      "type": "steam",
      "value": "string"
    }
  }'

OK

{
  "mostXp": [
    {
      "accountInfo": {
        "completionTime": "2023-01-01T00:00:00Z",
        "level": 123456,
        "xp": 123456
      },
      "appId": 0,
      "appImage": "string",
      "appName": "string",
      "appShortName": "string",
      "badgeImage": "string",
      "baseLevel": 0,
      "baseXp": 0,
      "firstCompletion": "2019-08-24T14:15:22Z",
      "highestLevel": 0,
      "isEvent": true,
      "isFoil": true,
      "isSale": true,
      "lastCompletion": "2019-08-24T14:15:22Z",
      "name": "string",
      "price": 0,
      "publicId": "string",
      "scarcity": 0,
      "steamId": 0
    }
  ],
  "playtime": [
    {
      "appId": 730,
      "image": "someHash.idk",
      "name": "CS2",
      "playtime": 15
    }
  ],
  "scarcity": [
    {
      "accountInfo": {
        "completionTime": "2023-01-01T00:00:00Z",
        "level": 123456,
        "xp": 123456
      },
      "appId": 0,
      "appImage": "string",
      "appName": "string",
      "appShortName": "string",
      "badgeImage": "string",
      "baseLevel": 0,
      "baseXp": 0,
      "firstCompletion": "2019-08-24T14:15:22Z",
      "highestLevel": 0,
      "isEvent": true,
      "isFoil": true,
      "isSale": true,
      "lastCompletion": "2019-08-24T14:15:22Z",
      "name": "string",
      "price": 0,
      "publicId": "string",
      "scarcity": 0,
      "steamId": 0
    }
  ],
  "xp": {
    "property1": {
      "property1": 0,
      "property2": 0
    },
    "property2": {
      "property1": 0,
      "property2": 0
    }
  }
}