Complete Arma 3 Project Life API documentation to access server economy data
Welcome to the Arma 3 Project Life API documentation. This public API allows you to access all server economy data in real-time.
Access real-time server economy data
More APIs will be available soon
GET https://armaliferevival.com/api/economy/
server (optional)
Server code you want to retrieve data from (FR, US, ES, DE)
FR
US
ES
DE
country (optional) Alias of server
Alias of the server parameter (for backward compatibility)
# Retrieve data from the French server
curl -X GET "https://armaliferevival.com/api/economy/?server=FR" -H "Accept: application/json"
# Retrieve data from the US server
curl -X GET "https://armaliferevival.com/api/economy/?server=US" -H "Accept: application/json"
# Alternative with country parameter
curl -X GET "https://armaliferevival.com/api/economy/?country=DE" -H "Accept: application/json"
{
"success": true,
"country_code": "FR",
"data": {
"jobs": [...],
"houses": [...],
"warehouses": [...],
"import_export": [...],
"shops": [...],
"companies_shops": [...],
"food": [...],
"drinks": [...],
"licenses": [...],
"medical": [...],
"resources": [...],
"fuel_stations": [...],
"factory_upgrades": [...],
"factory_licenses": [...],
"factory_crafts": [...]
}
}
The API response contains a data object with the following keys:
jobs
array
List of all available jobs on the server with their salaries
houses
array
Information about house prices, taxes and storage capacities
warehouses
array
Information about warehouse prices, taxes and storage capacities
import_export
array
Import price, export price and recommended price for each item
shops
array
Complete list of shops with buy and sell prices for items
companies_shops
array
Company shops that buy or sell items
food
array
List of available food with their effects
drinks
array
List of available drinks with their effects
licenses
array
List of all available licenses with their prices
medical
array
Information about injuries and their treatments
resources
array
Available mining resources and their quantities
fuel_stations
array
List of gas stations with their fuel prices
factory_upgrades
array
Available factory upgrades
factory_licenses
array
Factory licenses required for certain crafts
factory_crafts
array
Crafting recipes with required items and quantities obtained
Need help? Create a ticket on our website.