# Get Eth Address with Name

## Get Eth Address

<mark style="color:blue;">`GET`</mark> `/api/v1/oauth2/user/<name>`

#### Path Parameters

| Name                                   | Type   | Description |
| -------------------------------------- | ------ | ----------- |
| name<mark style="color:red;">\*</mark> | String | user name   |

#### Headers

| Name                                           | Type   | Description  |
| ---------------------------------------------- | ------ | ------------ |
| Access-Token<mark style="color:red;">\*</mark> | String | access token |

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

```javascript
{
    "code": 200,
    "data": [
        {
            "address": "0xdF58ae1438620EA9E0A7584e6bF23dE505682B21",
            "id": "64358c626d81a80a8f79a29a",
            "username": "xiqing"
        },
        {
            "address": null,
            "id": "6438192b6d81a8859af0affd",
            "username": "xiqing1_gmail_com"
        },
        {
            "address": "0x831ecAe20AF356Be0D5c04DaEAE409Cc43E8B805",
            "id": "6441427f6d81a8afa72cf75e",
            "username": "xiqing1_qq_com"
        }
    ],
    "msg": ""
}
```

{% endtab %}
{% endtabs %}
