Stepn marketplace

Hello, begging for help! Dies anybody know, is there any possibility to collect sneakers buy/sell transaction data from in-game stepn marketplace using Moralis?

If they have this data public on their smart contract, then you can read it by calling the contract functions. or else you have to get it from their API, if any are available.

haven’t found nothing like this. That’s information stepn api gives on marketplace:

{“code”:0,“data”:[{“id”:228520002,“otd”:718810462,“time”:0,“propID”:161073162617,“img”:“31/18/m2604c5d_36558883832b2ab2cfeb30ef4cd6367213af_65.png”,“dataID”:6311005,“sellPrice”:175000,“hp”:100,“level”:5,“quality”:1,“mint”:2,“addRatio”:40,“lifeRatio”:10000,“v1”:230,“v2”:25,“speedMax”:167,“speedMin”:28},{“id”:228421796,“otd”:394297642,“time”:0,“propID”:144960682043,“img”:“8/24/m2604c5d_7441d2b4375e5480bbd2532d2a8cff2d313e_65.png”,“dataID”:6311005,“sellPrice”:176000,“hp”:100,“level”:5,“quality”:1,“mint”:1,“addRatio”:40,“lifeRatio”:10000,“v1”:66,“v2”:88,“speedMax”:167,“speedMin”:28}, …

and that’s what api gives about certain sneakers:
{
“code”: 0,
“data”: {
“id”: 161073162617,
“state”: 1230,
“type”: 1,
“dataID”: 6311005,
“chain”: 101,
“level”: 5,
“quality”: 1,
“hp”: 100,
“isRun”: false,
“remain”: 0,
“attrs”: [
70,
25,
51,
74,
160,
0,
0,
40,
0,
0,
0,
0
],
“endTime”: 0,
“upLeveTime”: 21600000,
“coolDownE”: 86400000,
“canSend”: false,
“price”: 0,
“speedMin”: 28,
“speedMax”: 167,
“breed”: 2,
“breedT”: 1661337325210,
“otd”: 718810462,
“hpLimit”: 100,
“isTest”: false,
“shoeImg”: “31/18/m2604c5d_36558883832b2ab2cfeb30ef4cd6367213af_65.png”,
“lifeRatio”: 10000,
“relatives”: [
{
“type”: 1,
“otd”: 495354910,
“dataId”: 6311004,
“img”: “44/1/m2604c5c_f2d45414b4d832c3460cf171a05095dc11e7_65.png”,
“shoeId”: 188232117019
},
{
“type”: 1,
“otd”: 227283131,
“dataId”: 6311005,
“img”: “2/3/m2604c5d_e4847a6bd4e1201573817c674ccdff6e95e1_65.png”,
“shoeId”: 41892196727
},
{
“type”: 2,
“otd”: 101015955,
“dataId”: 6311003,
“img”: “36/12/m2604c5b_9b3d133d44c3e08e4e5c3deb60414cac10c7_65.png”,
“shoeId”: 152403971381
},
{
“type”: 2,
“otd”: 159391442,
“dataId”: 6331001,
“img”: “10/20/m2609a79_40c05a2543b15471da15d393d5438220c19c_65.png”,
“shoeId”: 100692467153
}
],
“holes”: [
{
“index”: 0,
“type”: 2,
“quality”: 0,
“price”: 1000,
“dataID”: 0,
“gemId”: 0,
“addv”: 0,
“gAddv”: 0,
“hAddv”: 0
},
{
“index”: 1,
“type”: 1,
“quality”: -1,
“price”: 0,
“dataID”: 0,
“gemId”: 0,
“addv”: 0,
“gAddv”: 0,
“hAddv”: 0
},
{
“index”: 2,
“type”: 2,
“quality”: -1,
“price”: 0,
“dataID”: 0,
“gemId”: 0,
“addv”: 0,
“gAddv”: 0,
“hAddv”: 0
},
{
“index”: 3,
“type”: 1,
“quality”: -1,
“price”: 0,
“dataID”: 0,
“gemId”: 0,
“addv”: 0,
“gAddv”: 0,
“hAddv”: 0
}
]
}
}

Could it be, that marketplace transactions is only in-app, so doesn’t go through blockchain?

Not sure, you can check their contract code or their docs for more details.