Version: 1.1.0
Category: webapp
Entity: Infusion
Base URL: ${webappBaseUrl} (default: http://localhost:8080)
Last Updated: January 1, 2026
| Method | Path | Description | Auth Required |
|---|---|---|---|
| GET | /api/infusion/player/{player_id} |
Get infusions for player | No |
/api/infusion/player/{player_id}Get infusions for player.
webapp-infusion-by-player| Name | Type | Required | Format | Description |
|---|---|---|---|---|
player_id |
string | Yes | player-id | Player identifier |
The infusion response includes reactor staking information:
{
"infusions": [
{
"destinationId": "3-1",
"address": "cosmos1...",
"fuel": "1000000",
"power": "1000000",
"staking": {
"delegationStatus": "active",
"validationDelegation": {
"validator": "...",
"amount": "..."
}
}
}
]
}
Last Updated: January 1, 2026