👥Get Users

Get multiple users at once

Returns an array of users

GET https://api.alturanft.com/api/v2/user

You can add additional query parameters to filter documents by any property. i.e. ?name=Majd

Query Parameters

{  
  "users": [
    {
      "address": "0xb13fbf9f1433539c2c7a299c0a49611a143a975c",
      "name": "NFT-Louvre",
      "bio": "The finest NFTs in the space.",
      "profilePic": "https://ipfs.io/ipfs/QmfZuvamA14VFxSUEfrwDLeLVzwntugNuJTs5H1hKXW7YG",
      "socialLink": "",
      "profilePicUrl": "https://altura-marketplace-1.s3.us-east-2.amazonaws.com/0xb13fbf9f1433539c2c7a299c0a49611a143a975c_089a054c-70ac-4ef1-a5c2-7ef8701e60f5.png"
    },
    {
      "address": "0xd4c100a4b5de2c845d413c225154bc5992518a82",
      "name": "NoName",
      "bio": "",
      "profilePic": "https://ipfs.io/ipfs/QmfZfA8o1kKSehW3NmDN2CxW4QKk9ddnKG3CKWxhf3WBvc",
      "socialLink": "",
      "profilePicUrl": "https://altura-marketplace-1.s3.us-east-2.amazonaws.com/0xd4c100a4b5de2c845d413c225154bc5992518a82_456b0b8e-a84f-435d-8a32-39b8b753016a.png"
    },
    {
      "address": "0xaf150c106f2d31b6619ab2b39b476dbfe341f1a0",
      "name": "Torrvull",
      "bio": "",
      "profilePic": "https://ipfs.io/ipfs/QmfZJ28STGSYupvhBovTKEoMDFBGKTQ25N9NUX8PBxzk9T",
      "socialLink": "",
      "profilePicUrl": "https://altura-marketplace-1.s3.us-east-2.amazonaws.com/0xaf150c106f2d31b6619ab2b39b476dbfe341f1a0_a1397475-13a7-4c3d-a2b3-cec902561745.png"
    }
  }
Example: get a user by username

/api/v2/user?name=AlturaNFT

Response

{
  "users": [
    {
      "address": "0xcaf45074fc329692995d812aeb099070c7fdee2b",
      "name": "AlturaNFT",
      "bio": "Altura is a smart contract platform that allows game developers to mint, distribute and transact Smart NFTs representing in-game items. Smart NFTs are NFTs with dynamic properties that can change based on certain conditions.",
      "profilePic": "https://ipfs.io/ipfs/QmTGgo2JveLMM9ftuqvDQtpcY8HqwewinFLQ54i4eb8H3Y",
      "socialLink": "https://www.alturanft.com/",
      "profilePicUrl": "https://altura-marketplace-1.s3.us-east-2.amazonaws.com/0xcaf45074fc329692995d812aeb099070c7fdee2b_126b90b1-92c0-417b-b119-b67e4141d30d.png"
    }
  ],
  "count": 1
}

Last updated