Get Player and Planets

Version: 1.0.0 Workflow: get-player-and-planets Category: Query


Description

Get player information and their planets - Multi-step API workflow.

Prerequisites

None.

Steps

1. Get Player Information

Parameters:

Parameter Example Value
player_id 1-11

Data Extraction:

Expected Response:

Error Handling:

Status Action
404 Player not found - verify player_id
500 Server error - retry with exponential backoff

2. Get Planets Owned by Player

Parameters:

Parameter Value
playerId ``

Data Extraction:

Expected Response:

Error Handling:

Status Action
404 No planets found for player (may be empty array)
500 Server error - retry with exponential backoff

Result

{
  "player": "",
  "guild": "",
  "planets": ""
}

Notes

This workflow demonstrates chaining API calls where step 2 depends on data from step 1.