v1
latestOpenAPI 3.1.02026-07-13143194365.4 KBconfig
Get platform configuration
Returns current platform parameters including fee structure, funding limits, referral reward percentages, and supported networks.
This endpoint is **public** (no authentication required) and is designed as the
single source of truth for all clients (web app, Chrome extension, SDK, agents).
Values are controlled by server-side environment variables and may change without
a client-side deployment. See the response schema for the full list of fields.
get/v1/config
Response
Successful Response
Example response
{
"fee_percentage": "0.02",
"receiver_percentage": "0.98",
"min_fund_amount": "0.01",
"max_fund_amount": "500.00",
"max_account_balance": "500.00",
"referral_user_reward_percentage": "0.01",
"referral_bdr_reward_percentage": "0.01",
"supported_networks": [
"base-sepolia",
"base"
],
"default_network": "base-sepolia",
"default_token": "USDC",
"min_tip_amount": "0.01",
"max_tip_amount": "20.00",
"min_withdrawal_amount": "0.01",
"max_withdrawal_amount": "1000.00",
"referral_user_duration_days": 365,
"referral_bdr_duration_days": 365,
"profile_base_url": "https://grove.city"
}