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'

Last updated