GET
/
activities
Get User Activities
curl --request GET \
  --url https://api.basement.fun/activities
{
  "success": true,
  "result": {
    "pageNumber": 123,
    "pageSize": 123,
    "data": [
      {
        "type": "on-chain",
        "eventId": "<string>",
        "gameId": "<string>",
        "gameName": "<string>",
        "gameSlug": "<string>",
        "user": {
          "id": "<string>",
          "address": "<string>",
          "username": "<string>"
        },
        "displayText": "<string>",
        "timestamp": 123
      }
    ]
  }
}

Query Parameters

pageSize
integer
default:10
pageNumber
integer
default:1
walletAddress
string
gameId
string
type
enum<string>
Available options:
on-chain,
off-chain

Response

200 - application/json

Successful response

The response is of type object.