> For the complete documentation index, see [llms.txt](https://tutorial.neoline.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tutorial.neoline.io/reference/neo3-provider-api-legacy/read-methods/pickaddress.md).

# pickAddress

Returns the NEO N3 account selected by the user.

## **Input Arguments**

None

## **Success Response**

<table><thead><tr><th width="291">Parameter</th><th>Description</th></tr></thead><tbody><tr><td><code>label: string</code></td><td>A label the users has set to identify their wallet</td></tr><tr><td><code>address: string</code></td><td>The NEO N3 account address selected by the user</td></tr></tbody></table>

## Example

### Request

```js
neolineN3.pickAddress()
.then(result => {
    const { label, address } = result;
    console.log('label:' + label);
    console.log('address' + address);
})
.catch((error) => {
    const {type, description, data} = error;
    switch(type) {
        case 'NO_PROVIDER':
            console.log('No provider available.');
            break;
        case 'CANCELED':
            console.log('The user cancels, or refuses the dapps request');
            break;
        default:
            // Not an expected error object.  Just write the error to the console.
            console.error(error);
            break;
    }
});
```

### Response

```js
{
    label: 'N3-Name',
    address: 'NfuwpaQ1A2xaeVbxWe8FRtaRgaMa8yF3YM'
}
```
