# getCustomerAttribute

Get the current stored value, if available, for the provided key in the on-device customer key/value store.

{% tabs %}
{% tab title="Swift" %}

```swift
let firstName = NamiCustomerManager.getCustomerAttribute("firstName")
```

{% endtab %}

{% tab title="Kotlin" %}

```kotlin
val firstName = NamiCustomerManager.getCustomerAttribute("firstName")
```

{% endtab %}

{% tab title="Flutter" %}

```dart
NamiCustomerManager.getCustomerAttribute("firstName");
```

{% endtab %}

{% tab title="React Native" %}

```javascript
const firstName = await NamiCustomerManager.getCustomerAttribute('firstName);
```

{% endtab %}
{% endtabs %}
