Skip to main content
POST
/
auth
/
refresh
Refresh
curl --request POST \
  --url https://api.example.com/auth/refresh

Documentation Index

Fetch the complete documentation index at: https://docs.tattoo.dev/llms.txt

Use this file to discover all available pages before exploring further.

Request Body

{
  "refresh_token": "jwt"
}

Response Shape

{
  "success": true,
  "message": "Tokens refreshed successfully",
  "tokens": {
    "access_token": "jwt",
    "refresh_token": "jwt",
    "expires_in": 86400
  }
}