> For the complete documentation index, see [llms.txt](https://docs.altura.com/altura-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.altura.com/altura-documentation/api-reference/get-endpoints/get-user.md).

# Get User

## Returns a single user

<mark style="color:blue;">`GET`</mark> `https://api.alturanft.com/api/v2/user/:address`

Takes a user's wallet address and returns that user

#### Path Parameters

| Name                                      | Type   | Description               |
| ----------------------------------------- | ------ | ------------------------- |
| address<mark style="color:red;">\*</mark> | String | The user's wallet address |

{% tabs %}
{% tab title="200: OK " %}

```javascript
{
  "user": {
    "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.",
    "socialLink": "https://www.alturanft.com/",
    "profilePicUrl": "https://altura-marketplace-1.s3.us-east-2.amazonaws.com/0xcaf45074fc329692995d812aeb099070c7fdee2b_126b90b1-92c0-417b-b119-b67e4141d30d.png"
  }
}
```

{% endtab %}

{% tab title="500: Internal Server Error " %}

```javascript
{
    // Response
}
```

{% endtab %}
{% endtabs %}
