> ## Documentation Index
> Fetch the complete documentation index at: https://docs.apowerb.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Refresh Token



## OpenAPI

````yaml /api-reference/openapi.json post /api/auth/refresh-token
openapi: 3.1.0
info:
  title: apowerb API
  description: REST API of the apowerb agentic framework (open-source edition).
  version: 0.1.2
  license:
    name: MIT
    url: https://github.com/apowerb/apowerb/blob/main/LICENSE
servers:
  - url: https://api.example.com
    description: Your apowerb instance
  - url: http://localhost:8000
    description: Local stack
security: []
paths:
  /api/auth/refresh-token:
    post:
      tags:
        - auth
      summary: Refresh Token
      operationId: refresh_token_api_auth_refresh_token_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Token'
components:
  schemas:
    Token:
      properties:
        token_type:
          type: string
          title: Token Type
        access_token:
          type: string
          title: Access Token
      type: object
      required:
        - token_type
        - access_token
      title: Token

````

## Related topics

- [Run Agent From Refresh Token Endpoint](/api-reference/adk/run-agent-from-refresh-token-endpoint.md)
- [Authentication](/api-reference/authentication.md)
- [Logout](/api-reference/auth/logout.md)
- [Google Callback](/api-reference/integrations/google-callback.md)
- [Create Subscription](/api-reference/webhooks/create-subscription.md)
