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

# Refresh balances for the workspace

> Synchronously refreshes balances for every account in the caller workspace — connection-backed (Wise/Kraken/Safe/etc.) and standalone on-chain wallets alike — and persists them.



## OpenAPI

````yaml /api-reference/data-api.json post /v2/accounts/refresh
openapi: 3.0.0
info:
  title: Range Data API
  description: >-
    The Range Data API for crypto addresses, networks, transactions, and
    entities.
  version: 1.7.9
  contact: {}
servers:
  - url: https://api.range.org
    description: Range API Server
security:
  - Authorization: []
tags:
  - name: Address Information
    description: Get information about a crypto address.
  - name: Entity Information
    description: Get information about entities.
  - name: Network Information
    description: Get information about networks.
  - name: Protocols
    description: Get information about cross-chain protocols.
  - name: Token transfers
    description: Get information about token transfers.
paths:
  /v2/accounts/refresh:
    post:
      tags:
        - Accounts
      summary: Refresh balances for the workspace
      description: >-
        Synchronously refreshes balances for every account in the caller
        workspace — connection-backed (Wise/Kraken/Safe/etc.) and standalone
        on-chain wallets alike — and persists them.
      operationId: refreshAccounts
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RefreshAccountsResponseDto'
components:
  schemas:
    RefreshAccountsResponseDto:
      type: object
      properties:
        refreshed:
          type: number
          example: 12
          description: Number of accounts whose balances were refreshed.
        failed:
          type: number
          example: 1
          description: >-
            Number of accounts whose balance refresh failed (e.g. provider
            error).
      required:
        - refreshed
        - failed
  securitySchemes:
    Authorization:
      scheme: bearer
      bearerFormat: API Key
      description: 'Use Authorization: Bearer <api-key>'
      type: http

````