---
title: "Refresh Token"
method: POST
path: "/token/refresh"
tags: ["Access Token"]
---

# Refresh Token

`POST /token/refresh`

Once an Access Token expires, you can refresh it using the refresh_token obtained during the initial token request.

## Request body

- object
  - `refresh_token` string, required — The refresh token from the original token response
  - `grant_type` string, required — Must be `refresh_token`

## Response `200`

Token refreshed successfully

- object
  - `data` object
    - `access_token` string
    - `expires_in` integer
    - `token_type` string
    - `refresh_token` string
  - `requestId` string

---

[API](https://skmtc.net/octoparse/apis/octoparse-api.md) · [All operations](https://skmtc.net/octoparse/apis/octoparse-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/octoparse/octoparse-api/revisions/ba22877ce84b/schema)
