User data request
Get user data
Request Body
Name
Type
Description
{
steamID: '76561198402902692',
steamHEX: '11000011a621aa0',
username: '[KMB] Kub_Luk',
profileURL: 'https://steamcommunity.com/id/kubluk/',
avatar: 'https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/09/098f47fad0459a4c07acce7750aa8ce5c952acca_full.jpg',
requestToken: '95551c78f32c60f5a7eb20b16da6f094'
}NodeJS Example
const axios = require('axios')
axios.post('https://modiplex.com/api/getVerifiedUser', {
token: `4de599303763995849ca52032d3333af541f41c90a2fc39ebb726365d1183dee`,
exchangeToken: `95551c78f32c60f5a7eb20b16da6f094`
})
.then(res => {
console.log(res.data);
})
.catch(error => {
console.error(error)
})Last updated