Version: 1.0.0
Category: Query
Entity: Reactor
Base URL: http://localhost:1317
Base Path: /structs
| Method | Path | Description | Auth | Paginated |
|---|---|---|---|---|
| GET | /structs/reactor/{id} |
Get reactor by ID | No | No |
| GET | /structs/reactor |
List all reactors | No | Yes |
GET /structs/reactor/{id}
Returns a single reactor by its entity ID.
| Name | Type | Required | Format | Description |
|---|---|---|---|---|
id |
string | Yes | entity-id (^3-[0-9]+$) |
Reactor identifier in format ‘type-index’ (e.g., ‘3-1’ for reactor type 3, index 1). Type 3 = Reactor. |
application/jsonschemas/entities/reactor.mdRequest: GET /structs/reactor/3-1
Response:
{
"Reactor": {
"id": "3-1",
"validator": "structsvaloper1...",
"guildId": "0-1",
"defaultCommission": "0",
"owner": "1-11"
}
}
The owner field (string, PlayerId) identifies the player who owns this reactor.
GET /structs/reactor
Returns a paginated list of all reactors.
application/jsonschemas/entities/reactor.md (array)