NAME
ardb - Command-line interface for ARC Raiders Database (ardb.app)
VERSION
version 0.001
SYNOPSIS
ardb <command> [options]
# List items
ardb items
ardb items --search guitar
ardb items --rarity legendary
ardb items --type weapon
# Show item details
ardb item acoustic_guitar
# List quests
ardb quests
ardb quests --search supply
ardb quests --trader shani
# Show quest details
ardb quest picking_up_the_pieces
# List ARC enemies
ardb enemies
ardb enemies --search wasp
# Show enemy details with drop table
ardb enemy wasp
# Output as JSON
ardb items --json
ardb enemy wasp -j
DESCRIPTION
This command-line tool provides access to the ARC Raiders Database API at https://ardb.app.
NAME
ardb - Command-line interface for ARC Raiders Database
GLOBAL OPTIONS
- --debug, -d
-
Enable debug output showing API requests.
- --no-cache
-
Disable response caching.
- --json, -j
-
Output results as JSON instead of formatted text.
COMMANDS
items
List all items in the database.
ardb items [--search NAME] [--type TYPE] [--rarity RARITY]
item
Show details for a specific item.
ardb item <id>
quests
List all quests.
ardb quests [--search TITLE] [--trader NAME]
quest
Show details for a specific quest.
ardb quest <id>
enemies
List all ARC enemies.
ardb enemies [--search NAME]
enemy
Show details for a specific ARC enemy including drop table.
ardb enemy <id>
ENVIRONMENT
- WWW_ARDB_DEBUG
-
Set to 1 to enable debug output.
ATTRIBUTION
Data provided by https://ardb.app. Please credit ardb.app when using this data in your applications.
SEE ALSO
WWW::ARDB, https://ardb.app/developers/api
SUPPORT
Source Code
The code is open to the world, and available for you to hack on. Please feel free to browse it and play with it, or whatever. If you want to contribute patches, please send me a diff or prod me to pull from your repository :)
https://github.com/Getty/p5-www-ardb
git clone https://github.com/Getty/p5-www-ardb.git
AUTHOR
Torsten Raudssus <torsten@raudssus.de>
COPYRIGHT AND LICENSE
This software is copyright (c) 2026 by Torsten Raudssus.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.