GET /auth/refresh-token

Tokens are considered outdated every two weeks. This route allows to extend their lifetime before they get outdated.

Responses

  • 200

    Access Token

GET /auth/refresh-token
curl -X GET "http://api.example.com/auth/refresh-token" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Accept: application/json"
import requests

url = "http://api.example.com/auth/refresh-token"
headers = {
    "Authorization": "Bearer YOUR_API_TOKEN",
    "Accept": "application/json"
}
params = {}
payload = None

response = requests.get(
    url,
    headers=headers,
    params=params,
    json=payload
)

response.raise_for_status()

if response.content:
    print(response.json())
curl \
 --request GET 'http://api.example.com/auth/refresh-token' \
 --header "Authorization: $API_KEY"