mallow
  • SMORES Token
    • Overview
    • How to earn
    • Economics
    • SMORES Uses
    • FAQ
  • REST API
    • Overview
    • Reference
      • Types
        • Artwork
        • Collection
      • /artworks
        • GET /artworks/:mintAccount
        • GET /artworks/trending
        • POST /artworks/listedBySeller
        • POST /artworks/byCreator
      • /events
        • POST /events/byMint
        • POST /events/bySeller
      • /users
        • GET /users/:address
      • /rewards
        • GET /rewards/unclaimed/:address
      • /getBidOrBuyTx
        • POST /getBidOrBuyTx
      • /scheduledBids
        • POST /scheduledBids/getBidTx
        • POST /scheduledBids/getCancelBidTx
        • GET /scheduledBids/:bidder
  • Actions/Blinks
Powered by GitBook
On this page
  1. REST API
  2. Reference
  3. /users

GET /users/:address

Get info about a user

User info by address

GET https://api.mallow.art/v1/users/:address

Returns a user's profile info by their wallet address

Path Parameters

Name
Type
Description

address*

string

User's address

{
    "result": {
        "addresses": [
            "DsSqaaKvuzkexQophftgPJqZqVi3Ki7VQcpGSwnXe9WZ"
        ],
        "displayName": "tiiinydenise",
        "username": "tiiinydenise",
        "dripUsername": "tiiinydenise",
        "bio": "🔸Designer + tiny 1/1 artist ✏️",
        "website": "https://janrossdenise.com",
        "twitter": {
            "username": "tiiinydenise"
        },
        "imageUrl": "https://cdn.mallow.art/images/pfp/DsSqaaKvuzkexQophftgPJqZqVi3Ki7VQcpGSwnXe9WZ/1700955644498",
        "bannerUrl": "https://cdn.mallow.art/images/banner/DsSqaaKvuzkexQophftgPJqZqVi3Ki7VQcpGSwnXe9WZ/1700638253908"
    }
}
{
    "error": { 
        "message": "Invalid API Key" 
    }
}
{
    "error": { 
        "message": "Missing address" 
    }
}
{
    "error": { 
        "message": "User not found" 
    }
}
Previous/usersNext/rewards

Last updated 1 year ago