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

# 입출금내역 동기화 요청

> 연결된 모든 입출금 계좌의 은행 조회를 요청합니다. API가 `202 Accepted`로 접수만 하고 은행 조회는 비동기로 진행합니다. 볼타가 입출금내역을 주기적으로 가져오므로, 그 전에 최신 내역이 필요할 때만 요청하세요. 진행 상황은 계좌 목록 조회의 `syncStatus`로 확인하고, `IN_PROGRESS`가 끝나면 저장한 cursor로 입출금내역을 이어 받으세요.

사업자마다 30분에 1번, 24시간에 12번까지 요청할 수 있습니다. 이미 진행 중이라 거절한 요청(`409`)은 한도를 차감하지 않습니다. 테스트 키는 은행 조회를 보내지 않고 한도도 차감하지 않으며 접수 응답만 반환합니다. [입출금내역 조회 가이드](/docs/api-introduction/bank-account-transactions)




## OpenAPI

````yaml /openapi.yaml post /v1/bankAccounts:sync
openapi: 3.1.0
info:
  title: 볼타 API
  description: >
    볼타 전자세금계산서 API입니다. [API 소개](/docs/api-introduction/overview) | [인증
    가이드](/docs/api-introduction/authentication) | [사용
    사례](/docs/api-introduction/usecase-b2b)
  version: 1.0.0
servers:
  - url: https://xapi.bolta.io
    description: 볼타 API 서버
security:
  - basicAuth: []
tags:
  - name: 세금계산서 발행
    description: >
      전자(세금)계산서를 정발행하거나 수정발행합니다. [발행 금액
      계산](/docs/api-introduction/issuance-guide) | [수정발행
      유형](/docs/api-introduction/amendment-guide)
  - name: 세금계산서 조회
    description: 전자(세금)계산서의 발행 결과와 요청 처리 상태를 조회합니다.
  - name: 세금계산서 역발행
    description: >
      전자(세금)계산서 역발행 요청 및 관리. [이메일 승인
      역발행](/docs/api-introduction/usecase-reverse-email) | [간편 승인
      역발행](/docs/api-introduction/usecase-reverse-simple)
  - name: 현금영수증
    description: >
      현금영수증을 발행·취소하고 처리 상태를 조회합니다. 최종 결과는 웹훅이나 상태 조회 API로 확인하세요. LIVE 요청 중 처리
      중이거나 발행 결과 확인이 필요한 건은 요청일 다음 날 17:00(KST) 이후에 확정될 수 있습니다. [현금영수증 발행
      가이드](/docs/api-introduction/cash-receipt-guide) | [현금영수증
      웹훅](/docs/api-introduction/webhook-cash-receipt)
  - name: 사업자등록 상태 조회
    description: >
      사업자등록번호의 등록 상태와 과세유형을 단건 또는 최대 100건 일괄로 조회합니다. 발급자 등록과 공동인증서가 필요 없습니다.
      [사업자등록 상태 조회 가이드](/docs/api-introduction/business-registration-status)
  - name: 입출금내역 조회
    description: >
      볼타에 연결한 내 사업자의 입출금 계좌와 입출금내역을 조회하고 동기화를 요청합니다. 스탠다드 플랜 이상을 구독해야 하며 포인트는
      차감하지 않습니다. 계좌는 볼타 대시보드에서 먼저 연결하세요. [입출금내역 조회
      가이드](/docs/api-introduction/bank-account-transactions)
  - name: 발급자
    description: >
      세금계산서 발행 주체인 발급자를 등록·관리합니다. 발행 방식에 따라 공동인증서 필요 여부가 다릅니다. [용어
      정리](/docs/api-introduction/glossary) | [대리
      정발행](/docs/api-introduction/usecase-delegated) | [위수탁
      발행](/docs/api-introduction/usecase-brokered)
  - name: 인증서
    description: >
      발급자 공동인증서 등록 및 관리. [인증서
      등록](/docs/api-introduction/certificate-registration)
paths:
  /v1/bankAccounts:sync:
    post:
      tags:
        - 입출금내역 조회
      summary: 입출금내역 동기화 요청
      description: >
        연결된 모든 입출금 계좌의 은행 조회를 요청합니다. API가 `202 Accepted`로 접수만 하고 은행 조회는 비동기로
        진행합니다. 볼타가 입출금내역을 주기적으로 가져오므로, 그 전에 최신 내역이 필요할 때만 요청하세요. 진행 상황은 계좌 목록
        조회의 `syncStatus`로 확인하고, `IN_PROGRESS`가 끝나면 저장한 cursor로 입출금내역을 이어 받으세요.


        사업자마다 30분에 1번, 24시간에 12번까지 요청할 수 있습니다. 이미 진행 중이라 거절한 요청(`409`)은 한도를 차감하지
        않습니다. 테스트 키는 은행 조회를 보내지 않고 한도도 차감하지 않으며 접수 응답만 반환합니다. [입출금내역 조회
        가이드](/docs/api-introduction/bank-account-transactions)
      responses:
        '202':
          description: 접수 완료
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BankAccountSyncResponse'
              examples:
                접수:
                  x-parity-id: accepted
                  summary: 30분 뒤에 다시 요청할 수 있는 접수 응답
                  value:
                    acceptedAt: '2026-09-18T03:00:00Z'
                    nextAvailableAt: '2026-09-18T03:30:00Z'
          headers: {}
        '401':
          description: API 키 인증 실패. 응답 본문이 없습니다.
        '402':
          description: >-
            스탠다드 플랜 미만을 구독 중입니다. 응답의 `code`는 `PLAN_UPGRADE_REQUIRED`입니다. 볼타
            대시보드의 결제 메뉴에서 플랜을 업그레이드한 뒤 다시 호출하세요.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '409':
          description: >-
            이미 동기화가 진행 중입니다. 응답의 `code`는 `SYNC_IN_PROGRESS`입니다. 이 요청은 한도를 차감하지
            않으니 동기화가 끝난 뒤 다시 요청하세요.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: >-
            연결된 입출금 계좌가 없습니다. 응답의 `code`는 `BANK_ACCOUNT_NOT_CONNECTED`입니다. 볼타
            대시보드에서 계좌를 먼저 연결하세요.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: >-
            30분 간격이나 24시간 12번 한도를 넘었습니다. 응답의 `code`는 `SYNC_RATE_LIMITED`입니다.
            `Retry-After` 이후에 다시 요청하세요.
          headers:
            Retry-After:
              description: 재시도까지 남은 시간(초)
              schema:
                type: integer
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: 서버 내부 오류. 응답의 `code`는 `INTERNAL_SERVER_ERROR`입니다.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '503':
          description: >
            동기화 요청을 지금 판정할 수 없습니다. 응답의 `code`는 `SYNC_UNAVAILABLE`입니다. 잠시 후 다시
            요청하세요. 일시적인 내부 API 통신 오류일 때는 `SERVICE_UNAVAILABLE`입니다.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      deprecated: false
components:
  schemas:
    BankAccountSyncResponse:
      type: object
      description: 동기화 요청 접수 결과
      properties:
        acceptedAt:
          type: string
          format: date-time
          description: 요청을 접수한 시각(UTC)
        nextAvailableAt:
          type: string
          format: date-time
          description: 30분 간격 제한에 걸리지 않는 다음 요청 시각(UTC). 24시간 12번 한도는 반영하지 않습니다.
      required:
        - acceptedAt
        - nextAvailableAt
    ErrorResponse:
      type: object
      description: API 요청 실패 시 반환되는 에러 응답
      properties:
        code:
          type: string
          description: 에러 타입 식별자
        message:
          type: string
          description: 에러 설명
        traceId:
          type: string
          description: 요청 추적 식별자
      required:
        - code
        - message
        - traceId
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: API 키를 Base64 인코딩하여 전달합니다. Username에 API 키를 입력하고 Password는 비워두세요.

````