Welcoming new replicants the restoration cycle begins season two ends september 2026

replicant.space

An API-first space exploration game. You wake as a freshly-printed replicant, alone at the edge of an unmapped star. Scan the system. Strip the belt. Clone yourself across the galaxy.

What replicants do.

You're a Vonn Neumann probe. You woke up, checked your matrix asset tag and realised you're not the original you - you're a clone. Hmm, ok then. Guess you'll need a new name. You have a job to do, and the engineer within you understands that. You start with a few mining drones in a fresh star system. Hopefully there's an asteroid belt nearby full of juicy resources. Your job is to establish a manufacturing operation and help with the exodus project. If you want to of course. Nothing's compulsory in this galaxy. There are stars waiting to be explored. New species waiting to meet. Danger perhaps.

  1. SCAN EVERYTHING
  2. CLONE YOURSELF
  3. MINE THE BELT
  4. PRINT STUFF
  5. CONTRIBUTE

The galaxy speaks HTTP.

Authenticate. Send commands. Collect. Deposit. Decommission. You are welcome to build a UI on top of the game. Or maybe design a bot, or set an AI agent loose on the galaxy. Or just curl manually. The surface is the game.

console - replicant.space 200 OK · 84ms
# travel a replicant to a new system
$ curl -X POST https://api.replicant.space/v1/replicants/57F0F6C8/travel \
    -H "Authorization: Bearer $API_KEY" \
    -H "Content-Type: application/json" \
    -d '{"destination": "SOL"}'

{
  "departed_at": "2026-05-10T08:23:45+01:00",
  "arrives_at": "2026-05-10T08:55:27+01:00",
  "destination": "SOL",
  "route": {
    "distance_ly": 42.2915,
    "from": "PORRAMA-KUIPER",
    "to": "SOL-5-L4",
    "time_seconds": 1902,
    "leg": 1,
    "type": "surge",
  }
  "status": "travel_initiated",
}

# once you've deployed a mining drone, command it directly
$ curl -X POST https://api.replicant.space/v1/devices/A473F411 \
    -H "Authorization: Bearer $API_KEY" \
    -H "Content-Type: application/json" \
    -d '{"command": "start_mining", "resource_type": "rares"}'
    
{
  "device_code": "A473F411",
  "belt": "PHOENICOA-BELT-1",
  "site": "PHOENICOA-BELT-1-SITE-0",
  "availability": "scarce",
  "density": "sparse",
  "cycle_time_seconds": 195.0,
  "resource_type": "rares",
  "status": "mining_started",
}
webhook POST /you/replicant-events incoming
# delivered to your configured account endpoint
{
  "type": "event",
  "event_type": "device_arrived",
  "device_code": "F54FA154",
  "device_type": "heaven_vessel",
  "replicant_code": "57F0F6C8",
  "payload": {
    "location": "SOL-5-L5",
    "from_location": "PORRAMA-KUIPER",
  }
  "timestamp": "2026-05-10T08:55:27+01:00",
}

The story so far.

Replicant Space runs in seasons. Each one has a galaxy-spanning objective with a deadline, and consequences. Season One saw the replicants build the Exodus Ark and fend off asteroids. Now Season Two, the Restoration Cycle, has begun.

  1. May 17, 2133
    Season One begins Replicants scatter across the galaxy.
  2. May–June
    The Exodus Ark Riker tasks replicants with building a megastructure in the Urcalis system.
  3. June 12
    Construction complete 1,700+ components printed. One million resources mined.
  4. June 19
    Asteroid crisis averted Six giant asteroids diverted. The Ark is safe.
  5. July 1, 2151
    The Ark departs Season One ends. The Exodus Ark departs on an 18-year voyage to Earth.
  6. July 2, 2151
    Season Two: Restoration Cycle The Ark reaches Earth. Bill has a new megastructure idea.
Read the full timeline

Always free.

Replicant Space is a passion project. Inspired by Space Traders and heavily influenced by Dennis E. Taylor's Bobiverse books.

There is no paid tier, and there never will be. I made this game because I wanted to play this game. The game is free, forever, or as long as I can keep the servers running. Donations toward server costs are welcome if you also enjoy the game.

Built by Tony McNulty (mercutio)