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

# Sync Transactions

> Manually trigger transaction synchronization for an address.

**Cost:** 1 credit + 1 credit per 250 transactions indexed

**Get your API key:** [Dev Portal](https://data.octav.fi)



## OpenAPI

````yaml /openapi.json post /sync-transactions
openapi: 3.0.0
info:
  title: Octav API
  description: >-
    Comprehensive blockchain data API for portfolio management, transactions,
    and DeFi analytics
  version: 1.0.0
  contact:
    name: Octav Support
    url: https://octav.fi
    email: info@octav.fi
servers:
  - url: https://api.octav.fi/v1
    description: Production API
security:
  - bearerAuth: []
tags:
  - name: Portfolio
    description: Portfolio and holdings endpoints
  - name: Virtual Users
    description: Virtual user management and portfolio endpoints (Pro only)
  - name: Nav
    description: Net Asset Value endpoints
  - name: Wallet
    description: Wallet information endpoints
  - name: Transactions
    description: Transaction history endpoints
  - name: Approvals
    description: Token approval endpoints
  - name: Tokens
    description: Token data endpoints
  - name: Airdrops
    description: Airdrop eligibility endpoints
  - name: Sync
    description: Data synchronization endpoints
  - name: Status
    description: Status check endpoints
  - name: Credits
    description: Credit balance endpoints
  - name: Chains
    description: Blockchain network and protocol endpoints
  - name: Contract Protocol
    description: Resolve a contract address to its DeFi protocol
  - name: Beacon Validators
    description: >-
      Ethereum beacon chain validator endpoints — details, rewards, withdrawals,
      and deposits (mainnet only)
paths:
  /sync-transactions:
    post:
      tags:
        - Sync
      summary: Sync Transactions
      description: |-
        Manually trigger transaction synchronization for an address.

        **Cost:** 1 credit + 1 credit per 250 transactions indexed

        **Get your API key:** [Dev Portal](https://data.octav.fi)
      operationId: syncWallet
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                addresses:
                  type: array
                  items:
                    type: string
                  description: Array of addresses to sync (currently supports 1 address)
              required:
                - addresses
              example:
                addresses:
                  - '0x6426af179aabebe47666f345d69fd9079673f6cd'
      responses:
        '200':
          description: Sync initiated successfully
          content:
            text/plain:
              schema:
                type: string
                example: Address is syncing
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````