Albion Online API Documentation
Unofficial API endpoints for Albion Online game information
Note: Albion Online doesn't have an official API for 3rd party use, but has an API that their website uses for their killboard. Sandbox Interactive tolerates the use of this API by 3rd parties but doesn't provide any documentation.
This documentation is a community effort to document the known endpoints and parameters.
Source: Tools4Albion - API Info
API Root Paths
- Americas: https://gameinfo.albiononline.com/api/gameinfo/
- Europe: https://gameinfo-ams.albiononline.com/api/gameinfo/
- Asia: https://gameinfo-sgp.albiononline.com/api/gameinfo/
API Endpoints
| Endpoint | Parameters | Description | Example |
|---|---|---|---|
| /search?q=<term> |
q: search term
|
Returns basic information on guilds and players with names that contain the search term | View |
| /players/<ID> | None | Player informations like name, guild and lifetime statistics | View |
| /players/<ID>/deaths | None | Last 10 kill reports causing the death of the player | View |
| /players/<ID>/kills | None | Information about the latest 10 kills for the specified player | View |
| /players/statistics |
range: week | month
limit: 1-9999
offset: 1-9999
type: PvE | Gathering
|
Listing of top fame gainers ⚠ offset + limit ≤ 10000 | View |
| /guilds/<ID> | None | Basic guild informations like name, founder, alliance, fame and member count | View |
| /guilds/<ID>/members | None | Listing of the members of a guild with details of each player | View |
| /guilds/<ID>/top |
range: day | week | month
limit: 1-9999
offset: 1-9999
|
Top kills of the guild according to victim's kill fame ⚠ offset + limit ≤ 10000 | View |
| /alliances/<ID> | None | Basic alliance informations like name, tag, founder and a listing of all member guilds | View |
| /battles |
range: day | week | month
limit: 1-50
offset: 1-50
sort: totalFame | totalKills | recent
|
Listing of battles ⚠ offset + limit ≤ 10000 | View |
| /battles/<ID> | None | Information about a specific battle including all players and their stats | View |
| /events/battle/<ID> |
limit: 0-51
offset: 0-1000
|
Kills/Deaths associated with a specific battle | View |
| /events |
limit: 1-51
offset: 1-1000
guildId: filter by guild
|
Recent PvP kills | View |
| /events/<ID> | None | Information about a specific kill event | View |
| /events/playerfame |
range: week | month | lastWeek | lastMonth
limit: 1-51
offset: 1-1000
|
Top players within the selected time range based on kill fame | View |
| /events/guildfame |
range: week | month | lastWeek | lastMonth
limit: 1-51
offset: 1-1000
|
Top guilds within the selected time range based on kill fame | View |
| /items/<ID> | None | Returns the icon of the supplied item | View |
| /items/<ID>/data | None | Returns detailed information on the supplied item like category, enchantments, crafting, attributes | View |
| /matches/crystal |
limit: 1-9999
offset: 1-9999
|
List of recent crystal realm matches | View |
| /matches/crystal/<ID> | None | Crystal realm match details | View |
⚠ Important Notes:
- This is not an official API and is not documented by Sandbox Interactive
- Many endpoints have a limit where offset + limit cannot exceed 10000
- Rate limiting may apply - use responsibly
- API structure may change without notice