Reissue Token
Reissue access token based on API key
GET
/api/v1/auth/reissue
Description
API to reissue an access token using an existing valid API key. Use this endpoint when your current access token is expired or about to expire.
Authentication
API key(refresh token)
is required via Bearer token authentication.
Response
{
"access_token": "string"
}
Request Examples
const response = await fetch('https://openapi.deeplyinc.com/api/v1/auth/reissue', {
method: 'GET',
headers: {
"Authorization": "Bearer YOUR_API_KEY"
}
});
const data = await response.json();