# Push Notification - Device Token

{% hint style="warning" %}
[Personalized Push Notification](/integrations/personalized-push-notification.md) feature must be enabled to use this JS Bridge.
{% endhint %}

We’ve provided the JavaScript function `twinr_push_token_fetch()` to make it easy for you to fetch the device token along with the platform type (Android or iOS).

To fetch the device token, simply call the `twinr_push_token_fetch()` function from your website’s JavaScript.

```javascript
await twinr_push_token_fetch();
```

The function returns a JSON object with two fields:

* token: The unique device token required for push notifications.
* platform: The platform of the user’s device, which will be either "android" or "ios".

Example of a typical response:

```json
{
  "token": "abc123def456ghi789",  // Example device token
  "platform": "ios"               // or "android"
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.twinr.dev/js-bridge/push-notification-device-token.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
