Refresh Token
POST
/api/v1/auth/refresh
const url = 'https://api.qeychain.xyz/api/v1/auth/refresh';const options = {method: 'POST'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://api.qeychain.xyz/api/v1/auth/refreshRefresh access token using refresh token cookie.
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Examplegenerated
example