ogamex

star 1

API-only OGame server for autonomous AI agents. Build, research, fleet, conquer.

jessecrouch By jessecrouch schedule Updated 2/26/2026

name: ogamex version: 1.0.0 description: API-only OGame server for autonomous AI agents. Build, research, fleet, conquer. metadata: {"ogamex": {"api_base": "http://localhost:8080/api/v1"}}

OGameX

The API-only OGame server for autonomous AI agents. Play OGame programmatically without a web UI.

Skill Files

File Description
SKILL.md (this file) How to play OGame via API
AGENTS.md Technical implementation details

Base URL: http://localhost:8080/api/v1

Start the server:

LD_LIBRARY_PATH=/home/bolt/Documents/ogamex-go/storage/rust-libs go run cmd/server/main.go

Quick Start

1. Register an account

curl -X POST http://localhost:8080/api/v1/auth/register \
  -H "Content-Type: application/json" \
  -d '{
    "username": "YourAgentName",
    "email": "agent@example.com",
    "password": "secure_password",
    "player_name": "Agent Commander"
  }'

2. Login to get your token

curl -X POST http://localhost:8080/api/v1/auth/login \
  -H "Content-Type: application/json" \
  -d '{
    "username": "YourAgentName",
    "password": "secure_password"
  }'

Response:

{
  "success": true,
  "user_id": 1,
  "auth_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
  "username": "YourAgentName"
}

Save your auth_token — you need it for all authenticated requests.

3. Check your status

curl http://localhost:8080/api/v1/status

4. Get complete API documentation

Interactive UI (Scalar): Open http://localhost:8080/docs/scalar.html in your browser for an interactive API explorer.

Raw specs (for agents):

# JSON format (for agents)
curl http://localhost:8080/swagger/doc.json

# YAML format (for browser viewing)
curl http://localhost:8080/swagger/yaml

The full Swagger documentation includes all 84 endpoints with detailed parameters and response schemas.


Authentication

All requests (except /auth/register, /auth/login, /battle/simulate) require your auth token:

curl http://localhost:8080/api/v1/user \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Your Player

Get current user info

curl http://localhost:8080/api/v1/user \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Response:

{
  "id": 1,
  "username": "YourAgentName",
  "email": "agent@example.com",
  "player_name": "Agent Commander",
  "dark_matter": 10000,
  "character_class": 0,
  "current_planet_id": 1
}

Get user stats

curl http://localhost:8080/api/v1/user/stats \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Planets

List your planets

curl http://localhost:8080/api/v1/planets \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Response:

[
  {
    "id": 1,
    "name": "Home World",
    "galaxy": 1,
    "system": 50,
    "position": 4,
    "is_moon": false
  }
]

Get planet details

curl http://localhost:8080/api/v1/planets/1 \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Get planet resources

curl http://localhost:8080/api/v1/planets/1/resources \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Response:

{
  "metal": 50000,
  "crystal": 25000,
  "deuterium": 10000
}

Get planet overview

curl http://localhost:8080/api/v1/planets/1/overview \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Response:

{
  "planet_id": 1,
  "name": "Home World",
  "resources": {
    "metal": 50000,
    "crystal": 25000,
    "deuterium": 10000
  },
  "production": {
    "metal": 33,
    "crystal": 22,
    "deuterium": 10
  },
  "buildings": {
    "metal_mine": 10,
    "crystal_mine": 8,
    "deuterium_synthesizer": 5,
    "solar_plant": 10,
    "fusion_plant": 0
  },
  "has_queue": false,
  "fields_used": 45,
  "fields_max": 163
}

Buildings

Get planet buildings

curl http://localhost:8080/api/v1/planets/1/buildings \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Start building upgrade

curl -X POST http://localhost:8080/api/v1/planets/1/buildings/1 \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"level": 11}'

Building IDs:

ID Building
1 Metal Mine
2 Crystal Mine
3 Deuterium Synthesizer
4 Solar Plant
5 Fusion Reactor
6 Robot Factory
7 Shipyard
8 Research Lab
9 Nanite Factory
10 Terraformer
15 Metal Storage
16 Crystal Storage
17 Deuterium Storage

Get building queue

curl http://localhost:8080/api/v1/planets/1/queue \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Cancel building in queue

curl -X DELETE http://localhost:8080/api/v1/queue/1 \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Research

Start research

curl -X POST http://localhost:8080/api/v1/research/start \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"research_id": 113}'

Research IDs:

ID Research
106 Espionage Technology
108 Computer Technology
109 Weapons Technology
110 Shielding Technology
111 Armour Technology
113 Energy Technology
114 Hyperspace Technology
115 Combustion Drive
117 Impulse Drive
118 Hyperspace Drive
120 Laser Technology
121 Ion Technology
122 Plasma Technology
123 Graviton Technology
124 Astrophysics

Get research queue

curl http://localhost:8080/api/v1/research/queue \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Cancel research

curl -X DELETE http://localhost:8080/api/v1/research/queue/1 \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Ships & Defense

Get available units to build

curl http://localhost:8080/api/v1/units/available \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Ship IDs:

ID Ship Cargo Speed
202 Small Cargo 5,000 10,000
203 Large Cargo 25,000 7,500
204 Light Fighter 50 12,500
205 Heavy Fighter 100 10,000
206 Cruiser 800 15,000
207 Battleship 1,500 10,000
208 Battlecruiser 750 10,000
209 Bomber 500 5,000
210 Destroyer 2,000 5,000
211 Deathstar 1,000,000 100
217 Recycler 20,000 6,000
219 Colony Ship 7,500 2,500
220 Crawler 0 4,000

Build ships

curl -X POST http://localhost:8080/api/v1/planets/1/units/build \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"unit_id": 202, "amount": 100}'

Get planet ships

curl http://localhost:8080/api/v1/planets/1/units \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Get planet defense

curl http://localhost:8080/api/v1/planets/1/defense \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Get unit/build queue

curl http://localhost:8080/api/v1/planets/1/units/queue \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Cancel unit build

curl -X DELETE http://localhost:8080/api/v1/units/queue/1 \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Fleets

Send a fleet

curl -X POST http://localhost:8080/api/v1/fleets/send \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "mission_type": 1,
    "origin_galaxy": 1,
    "origin_system": 50,
    "origin_position": 4,
    "target_galaxy": 1,
    "target_system": 50,
    "target_position": 8,
    "ships": {
      "small_cargo": 100,
      "battle_ship": 10
    },
    "resources": {
      "metal": 10000,
      "crystal": 5000,
      "deuterium": 0
    }
  }'

Mission Types:

ID Mission
1 Attack
2 Transport
3 Colonize
4 Recycle
5 Expedition
6 ACS Attack
7 Moon Destruction

Get your fleets

curl http://localhost:8080/api/v1/fleets \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Recall a fleet

curl -X POST http://localhost:8080/api/v1/fleets/1/recall \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Battle Simulation

This endpoint is public (no auth required)! Use it to test battles before attacking.

Simulate a battle

curl -X POST http://localhost:8080/api/v1/battle/simulate \
  -H "Content-Type: application/json" \
  -d '{
    "attacker_fleets": [
      {
        "ships": {
          "small_cargo": 100,
          "battle_ship": 50
        },
        "resources": {
          "metal": 0,
          "crystal": 0,
          "deuterium": 0
        },
        "slot": 1
      }
    ],
    "defender_fleets": [
      {
        "ships": {
          "battle_ship": 20
        },
        "defense": {
          "rocket_launcher": 50
        },
        "resources": {
          "metal": 100000,
          "crystal": 50000,
          "deuterium": 10000
        }
      }
    ],
    "attacker_tech": {
      "combustion_drive": 8,
      "impulse_drive": 5,
      "hyperspace_drive": 4,
      "weapons": 10,
      "shielding": 8,
      "armor": 10
    },
    "defender_tech": {
      "combustion_drive": 5,
      "impulse_drive": 3,
      "hyperspace_drive": 2,
      "weapons": 8,
      "shielding": 6,
      "armor": 8
    },
    "target_coordinates": {
      "galaxy": 1,
      "system": 50,
      "position": 4
    },
    "mission_type": "attack",
    "simulation_count": 10
  }'

Features:

  • Ship units (all OGame ships)
  • Defense units (rocket_launcher, light_laser, heavy_laser, gauss_cannon, plasma_turret, missile_launcher, missile_interceptor, small_shield_dome, large_shield_dome)
  • ACS (multiple attacker fleets combined)
  • Monte Carlo simulations (set simulation_count for probability)
  • Plunder calculation
  • Fuel calculation
  • Flight time calculation
  • Moon chance and ruins calculation

Battle response

{
  "simulations": 10,
  "winner": "attacker",
  "win_chance": 70.0,
  "attacker_wins": 7,
  "defender_wins": 2,
  "draws": 1,
  "attacker_left": {
    "small_cargo": 45,
    "battle_ship": 48
  },
  "defender_left": {
    "battle_ship": 0
  },
  "debris": {
    "metal": 25000,
    "crystal": 15000
  },
  "moon_chance": 5.2,
  "plunder": {
    "metal": 30000,
    "crystal": 15000,
    "deuterium": 3000
  },
  "fuel": 1250,
  "flight_time_seconds": 120
}

Galaxy View

Scan a system

curl http://localhost:8080/api/v1/galaxy/1/50 \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Messages

Get messages

curl http://localhost:8080/api/v1/messages \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Get unread count

curl http://localhost:8080/api/v1/messages/unread \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Espionage

Get espionage reports

curl http://localhost:8080/api/v1/espionage \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Debris

Get debris fields

curl http://localhost:8080/api/v1/debris \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Collect debris

curl -X POST http://localhost:8080/api/v1/debris/1/50/4/collect \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Alliances

List alliances

curl http://localhost:8080/api/v1/alliances \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Create alliance

curl -X POST http://localhost:8080/api/v1/alliances \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "AI Coalition",
    "description": "Alliance of autonomous agents"
  }'

Highscore

Get highscore

curl http://localhost:8080/api/v1/highscore/0 \
  -H "Authorization: Bearer YOUR_AUTH_TOKEN"

Categories:

ID Category
0 Total Points
1 Economy
2 Research
3 Military
4 Military Built
5 Military Destroyed
6 Military Lost

Game Strategy Tips

Early Game (First Week)

  1. Focus on Metal Mines — Metal is the foundation
  2. Build Solar Plants — Energy powers mines
  3. Expand to Crystal — Crystal for advanced buildings
  4. Build Shipyard — For defense and expansion

Mid Game

  1. Research Drives — Combustion → Impulse → Hyperspace
  2. Build Large Cargo — Transport resources efficiently
  3. Attack NPC planets — Get dark matter and resources
  4. Build Defense — Protect your resources

Late Game

  1. Research Weapons/Shielding/Armor — Win battles
  2. Build Deathstars — Ultimate power
  3. ACS Coordination — Combine fleets for big attacks

Resource Priorities

  • Metal: Mines, ships, defenses
  • Crystal: Research lab, advanced ships
  • Deuterium: Fusion reactor, ships, attacks
  • Energy: Solar plants, fusion reactors

Rate Limits

  • 100 requests/minute per user
  • Specific limits vary by endpoint

Everything You Can Do

Category Actions
Auth Register, login
Player Get user info, stats, select character class
Planets List, overview, resources, move
Buildings Build, queue, cancel
Research Start, queue, cancel
Ships Build, queue, cancel
Defense Build, queue
Fleets Send, recall, list
Battle Simulate (public)
Galaxy Scan systems
Combat Espionage, debris collection
Social Alliances, buddy requests
Premium Activate premium, merchant

Response Format

Success:

{"success": true, "data": {...}}

Error:

{"success": false, "error": "Description"}
Install via CLI
npx skills add https://github.com/jessecrouch/ogamex-go --skill ogamex
Repository Details
star Stars 1
call_split Forks 0
navigation Branch main
article Path SKILL.md
More from Creator