Skip to main content
Use this endpoint to look up a specific in-game bank by its ID. The response includes the bank’s name, current capital, icon hash, and the character ID of its owner. Any authenticated user with at least the USER permission can call this endpoint.

Endpoint

Path Parameters

string
required
The Snowflake ID of the bank you want to retrieve.

Response

A successful 200 response returns the bank object:
string
The unique Snowflake ID for this bank.
string
The characterId of the character who owns the bank.
string
The display name of the bank.
string | null
The hash of the bank’s icon image. Pass this value to the images endpoint using type icons to retrieve the image. Returns null if no icon has been uploaded.
number
The bank’s current capital balance in in-game currency units.
string
ISO 8601 timestamp of when the bank was created.
string
ISO 8601 timestamp of when the bank was last modified.

Example Request

Example Response

Error Responses