> ## Documentation Index
> Fetch the complete documentation index at: https://docs.medera.info/llms.txt
> Use this file to discover all available pages before exploring further.

# Refresh a session JWT

> Refresh a session token

The identity provider handles JWT refresh transparently on the client. There is no Medera-issued refresh token. If you cache JWTs server-side (proxy pattern), refresh via:

```javascript theme={"system"}
const newJwt = await getToken({ template: 'medera-api', skipCache: true });

```
