1. Point
Bunjang Open API
  • Overview
  • Changelog
  • Authentication
  • Product Catalog
    • Service Base URL
    • Sample Data
    • Full Catalog Download
      GET
    • Segment Catalog Download
      GET
  • Rest API
    • Service Base URL
    • Error Codes
    • Product Category
      • List Categories
    • Brand
      • List Brands
    • Product
      • Get Product
      • Search Products
      • Filter On-Sale Products
    • Point
      • Get Point Balance
        GET
      • Create Point Charge
        POST
      • Get Point Charge
        GET
      • Cancel Point Charge
        POST
    • Order
      • Create Order
      • Confirm Order
      • Get Order
      • List Orders
      • Create Order (Deprecated)
  • Schemas
    • Product Condition
    • Product Active Sale Status
    • Order Status
  1. Point

Get Point Balance

Prod Env
https://openapi.bunjang.co.kr
Prod Env
https://openapi.bunjang.co.kr
GET
https://openapi.bunjang.co.kr
/api/v1/points/balance

번개 포인트 잔액 조회#

현재 잔액과 30일 이내 만료 예정 금액을 제공한다.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://openapi.bunjang.co.kr/api/v1/points/balance' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Body

Example
{
    "data": {
        "balance": 10000000,
        "pointExpiredIn30Days": 300000
    }
}
🟠401INVALID_AUTH_TOKEN
🟠400BAD_REQUEST
Modified at 2026-03-03 18:18:00
Previous
Filter On-Sale Products
Next
Create Point Charge
Built with