Skip to main content
GET
Get historical balance
각 요청에는 100 크레딧이 소모됩니다.

요청 매개변수

string
기본값:"GQUtvPx89ZNCwmvQqFmH59bJcU8fW8siETpaxod7Aydz"
필수
Solana 지갑 주소 (base58 인코딩)
string
기본값:"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
필수
토큰 민트 주소. 기본 SOL의 경우 So11111111111111111111111111111111111111111를 사용합니다.
number
기본값:"1750000000"
단위 Unix 타임스탬프. 이 시간의 잔액을 반환합니다. time, datetime, slot 중 하나만 제공합니다.
string
날짜-시간 문자열. 수락되는 형식: 2025-01-10 (UTC 자정), 2025-01-10 19:20:00, 2025-01-10T19:20:00 (초 선택 사항), 또는 명시적 시간대와 함께 (2025-01-10T19:20:00Z, ...+02:00). 명시적 시간대가 포함되지 않으면 UTC로 해석됩니다. time, datetime, slot 중 하나만 제공합니다.
number
슬롯 번호. 이 슬롯의 잔액을 반환합니다. 정확하고 결정적입니다. time, datetime, slot 중 하나만 제공합니다.

인증

api-key
string
query
필수

API key passed as query parameter

경로 매개변수

wallet
string
기본값:GQUtvPx89ZNCwmvQqFmH59bJcU8fW8siETpaxod7Aydz
필수

Solana wallet address (base58 encoded)

Pattern: ^[1-9A-HJ-NP-Za-km-z]{32,44}$

쿼리 매개변수

mint
string
기본값:EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
필수

Token mint address. For native SOL, use So11111111111111111111111111111111111111111.

time
integer
기본값:1750000000

Unix timestamp in seconds. Returns the balance as of this time. Provide exactly one of time, datetime, or slot.

필수 범위: x >= 0
datetime
string

Datetime string. Accepted formats: 2025-01-10 (UTC midnight), 2025-01-10 19:20:00, 2025-01-10T19:20:00 (seconds optional), or with an explicit timezone (2025-01-10T19:20:00Z, ...+02:00). Interpreted as UTC unless an explicit timezone is included. Provide exactly one of time, datetime, or slot.

slot
integer

Slot number. Returns the balance as of this slot. Exact and deterministic. Provide exactly one of time, datetime, or slot.

필수 범위: x >= 0

응답

Historical balance retrieved successfully

wallet
string
필수

Echo of the queried wallet address

예시:

"5tzFkiKscXHK5ZXCGbXZxdw7gTjjD1mBwuoFbhUvuAi9"

mint
string
필수

Echo of the queried mint (the SOL pseudo-mint when native)

예시:

"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"

isNative
boolean
필수

Whether the result is native SOL

예시:

false

balance
string
필수

Human-readable amount as a decimal string (not a number, so large balances don't lose precision). Trailing zeros are trimmed.

예시:

"284961463.392936"

balanceRaw
string
필수

Exact amount in the smallest unit (lamports for SOL), as a string

예시:

"284961463392936"

decimals
integer
필수

Token decimals (9 for SOL)

예시:

6

requested
object
필수

Echo of the query. When datetime is used, time is also populated with the resolved epoch seconds so the UTC interpretation is visible.

asOf
object | null
필수

The transaction the balance was read from. null when the wallet had no matching transaction at or before the requested point — meaning the balance is genuinely 0 (the wallet had not held the token by then), not an error.