META 정보
GET
https://{pick-domain}/v1.0/pick/lobby/meta
{
"return": 0,
"message": "success",
"value": {
"planets": [
{
"planet_id": 1,
"planet_name": "pick me 1",
"is_enabled": true,
"is_visible": true,
"limit_channel_participant_count": 30,
"start_wait_second": 10,
"end_process_second": 1,
"min_dividend_rate": 1,
"max_dividend_rate": 100,
"app_id": 3,
"point_id": 3,
"min_bet_quantity": 1000,
"nft_quantity": 14,
"mint_nft_quantity": 1
},
{
"planet_id": 2,
"planet_name": "pick me 2",
"is_enabled": false,
"is_visible": true,
"limit_channel_participant_count": 32,
"start_wait_second": 5,
"end_process_second": 1,
"min_dividend_rate": 1,
"max_dividend_rate": 2,
"app_id": 3,
"point_id": 3,
"min_bet_quantity": 1000,
"nft_quantity": 5,
"mint_nft_quantity": 0
}
],
"energys": [
{
"energy_id": 1,
"energy_name": "MEOW energy",
"quantity": 0
},
{
"energy_id": 2,
"energy_name": "Space energy",
"quantity": 0
}
],
"planet_energys": [
{
"planet_id": 1,
"energy_id": 1,
"is_victorious": true,
"max_held_quantity": 100,
"acquire_rate": 50,
"acquire_quantity": 10
},
{
"planet_id": 1,
"energy_id": 2,
"is_victorious": false,
"max_held_quantity": 100,
"acquire_rate": 50,
"acquire_quantity": 10
}
]
}
}
curl --location --request GET 'https://{dashboard-domain}/v1.0/db/meta'
planets
array
planet_id
int64
Planet id
planet_name
string
planet 이름
is_enabled
bool
Planet 활성화 상태
is_visible
bool
화면 노출 여부
limit_channel_participant_count
int64
최대 참여자 수
start_wait_second
int64
게임 시작 대기 시간(초)
end_process_second
int64
게임 종료 처리 시간(초)
min_dividend_rate
float64
최소 배당률
max_dividend_rate
float64
최대 배당률
app_id
int64
point_id
int64
min_bet_quantity
int64
최소 배팅 가능 금액
nft_quantity
int64
planet에 귀속된 NFT 수량
mint_nft_quantity
int64
NFT Minting 된 NFT 수량
energys
array
energy_id
int64
에너지 id
energy_name
string
에너지 이름
quantity
int64
not used
planet_energys
array
planet_id
int64
Planet id
energy_id
int64
planet 에서 사용하는 에너지 id
is_victorious
bool
true : 승리시 적용, false : 패배시 적용
max_held_quantity
int64
최대 에너지 보유 수량
acquire_rate
int64
획득율
acquire_quantity
int64
10 지급 에너지 수량
0
success
성공
33100
GetListAccountPoints DB Scan Error
내부 DB 에러
Last updated