GET /techs/{player_identifier}
Endpoint: GET /v1/pdapi/techs/<player_identifier>
Auth: Bearer token
Permission: REST.Techs.Read
Purpose
Lists technology information for a player. Technology identifiers can be searched on paldeck.cc/technology.
Path parameters
player_identifier:UserIdorPlayerUIDfor the target player.
Query parameters
None.
Request body
No request body.
Response schema
200 response schema
| Field | Type | Description |
|---|---|---|
Meta |
object | Technology count metadata for the target player. |
Techs |
object | Technology data for the target player. |
Meta object schema:
| Field | Type | Description |
|---|---|---|
PlayerUID |
string | Player UID used by Palworld save data. |
Player |
string | Player identifier supplied in the request path. |
UnlockedCount |
integer | Number of currently unlocked technologies. |
LockedCount |
integer | Number of currently locked technologies. |
TotalCount |
integer | Total number of recipe technologies known to the player data. |
Techs object schema:
| Field | Type | Description |
|---|---|---|
Unlocked |
string[] | Technology IDs currently learned by the player. |
Error responses
Error bodies use this shape:
| HTTP | Error code | When it happens |
|---|---|---|
401 |
INVALID_TOKEN |
The Authorization header is missing, malformed, or does not match a configured bearer token. |
403 |
MISSING_PERMISSION |
The token is valid, but it does not include this endpoint permission. |
400 |
INVALID_JSON |
A request body was supplied, but it could not be parsed as JSON. |
400 |
REQUEST_FAILED |
The target player, player account, technology data, or technology table could not be resolved. |
500 |
REQUEST_TIMEOUT |
The internal game-thread callback did not complete within 5 seconds. |
Examples
Read unlocked techs by UserID
Read unlocked techs by PlayerUID
Scenarios
- Check whether a player already has a
TechIDbefore learning or forgetting it. - Build an admin page that separates unlocked and available technologies.
- Audit progression after support actions.