Discover/overthewire.org API
live

overthewire.org APIoverthewire.org

Access OverTheWire wargame listings, level goals, SSH connection details, community rules, and suggested progression order via a structured REST API.

Endpoints
9
Updated
4mo ago
Try it

No input parameters required.

api.parse.bot/scraper/1cdf4da6-8aaf-471c-b2d5-f9fb1d571fe7/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/1cdf4da6-8aaf-471c-b2d5-f9fb1d571fe7/get_wargames_list' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 9 totalclick to expand

Get a categorized list of all available wargames grouped by status (Online, Offline, Released). Each entry includes the wargame display name, short name, and URL.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "Online": "array of wargame objects with name, short_name, and url",
    "Offline": "array of wargame objects with name, short_name, and url",
    "Released": "array of wargame objects with name, short_name, and url"
  },
  "sample": {
    "data": {
      "Online": [
        {
          "url": "https://overthewire.org/wargames/bandit",
          "name": "Bandit",
          "short_name": "bandit"
        }
      ],
      "Offline": [
        {
          "url": "https://overthewire.org/wargames/semtex",
          "name": "Semtex",
          "short_name": "semtex"
        }
      ],
      "Released": [
        {
          "url": "https://overthewire.org/wargames/abraxas",
          "name": "Abraxas",
          "short_name": "abraxas"
        }
      ]
    },
    "status": "success"
  }
}

About the overthewire.org API

The OverTheWire API exposes 9 endpoints covering every wargame available on overthewire.org, from the full categorized wargame list to per-level goal text and SSH connection parameters. get_level_info returns the goal description for any specific level by wargame name and level number, while get_ssh_connection_info gives you the hostname, port, and initial username needed to connect without visiting the site manually.

Wargame Listings and Metadata

get_wargames_list returns all wargames grouped into three arrays — Online, Offline, and Released — each entry containing name, short_name, and url. To go deeper on any single game, get_wargame_info accepts a wargame_name string (e.g. 'bandit' or 'natas') and returns the SSH host, port, display title, and a full levels array with each level's title and URL.

Level Details

get_level_info accepts wargame_name and a zero-indexed level_number and returns the goal text scraped from that level's page along with its url. For Natas specifically — a web-exploitation track — get_natas_level_info is a focused shortcut that returns the same shape but always sets wargame to 'natas', with the goal field including credentials and the in-game URL for that level. To pull every level for a wargame at once, get_all_levels_for_wargame returns a levels array with level, goal, and url for each entry, plus a top-level count. Note that this endpoint fetches each level page individually, so response time scales with the number of levels in the chosen wargame.

Connection Info, Rules, and Progression

get_ssh_connection_info returns hostname, port, and user (typically the wargame name followed by 0) for any shell-based wargame. get_rules returns the full community rules text as a single rules string. get_wargame_suggested_order returns an order array of strings describing the recommended sequence for working through the wargames — useful for building onboarding flows or curricula. get_released_wargame_info covers wargames listed under the Released category, returning a description field with the full text from that wargame's page.

Common use cases
  • Build a CLI tool that pulls SSH connection info from get_ssh_connection_info and opens a session automatically.
  • Generate a study guide by fetching all level goals for a wargame using get_all_levels_for_wargame.
  • Display the suggested wargame progression from get_wargame_suggested_order in a learning-path dashboard.
  • Sync the current wargame catalog with get_wargames_list to detect when new challenges go online or offline.
  • Populate a CTF reference app with Natas credentials and URLs using get_natas_level_info for each level.
  • Embed community rules from get_rules into onboarding flows for security training platforms.
  • Compare level counts across wargames by aggregating the count field from get_all_levels_for_wargame calls.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does OverTheWire have an official developer API?+
No. OverTheWire does not publish an official developer API or data feed. This Parse API provides structured access to wargame and level data from overthewire.org.
What does `get_wargame_info` return compared to `get_ssh_connection_info`?+
get_wargame_info returns the full wargame metadata including title, SSH host, port, and the complete levels array with each level's title and URL. get_ssh_connection_info is a narrower endpoint that returns only hostname, port, and the initial user string — the three values needed to form an SSH command. Both accept wargame_name as input.
Are player solutions, forum threads, or spoilers available through this API?+
Not currently. The API covers wargame listings, level goal text, SSH connection parameters, community rules, and the suggested progression order. You can fork it on Parse and revise to add an endpoint targeting any community or forum content that OverTheWire exposes publicly.
Is level goal text always plain text, or can it contain code or commands?+
The goal field is returned as a string extracted from the level page. Some levels include shell commands, file paths, or credential strings inline with the instructional text. The field is not further structured, so any parsing of commands or credentials is left to the caller.
Does the API cover offline or released wargames the same way as online ones?+
get_wargames_list returns all three categories — Online, Offline, and Released — with name and URL for each. However, get_released_wargame_info only returns a description field for released wargames; it does not return a levels array or SSH connection details the way get_wargame_info does for online wargames. You can fork the API on Parse and revise to extend level parsing to released wargame pages if that structure exists.
Page content last updated . Spec covers 9 endpoints from overthewire.org.
Related APIs in Developer ToolsSee all →
roadmap.sh API
Discover and access structured learning roadmaps, detailed guides, interview questions, and community projects to build your development skills across different technologies and career paths. Search through curated learning content, explore topic breakdowns, and find project ideas tailored to your learning goals.
poki.com API
Discover and browse thousands of free online games with detailed information about genres, popularity, and platform compatibility. Find new games by exploring categories or searching through Poki's complete game catalog to access metadata and recommendations.
wikia.com API
Extract structured data from Fandom (formerly Wikia) gaming wikis. Search pages, retrieve full page content, list category members, and convert wiki pages into organized guides with infoboxes, section breakdowns, and clean text.
theodinproject.com API
Access The Odin Project's complete curriculum structure including paths, courses, lessons, resources, and projects, plus search lessons and view detailed changelogs. Browse course outlines, find specific lessons and their learning materials all in one place.
eldenring.wiki.fextralife.com API
Search and retrieve structured Elden Ring game information from the Fextralife Wiki, including weapons, enemies, locations, and lore. Access full article content with hierarchical sections, tables, and images, or search the complete article catalog by keyword.
hackerrank.com API
Retrieve challenge scores, difficulty ratings, success ratios, and track-level ranking data from HackerRank's public practice platform. Browse challenges by track, view submission statistics, and access ranking metrics across all available tracks.
dumpspace.spuckwaffel.com API
Access detailed technical data for Unreal Engine and Unity games, including class structures, functions, enums, memory offsets, and inheritance hierarchies to support reverse engineering and modding projects. Search across thousands of game dumps to find specific classes, structs, and functions along with their documentation and offset information.
hyperskill.org API
Explore Hyperskill.org's learning content by browsing tracks, projects, stages, and topics, or retrieve detailed information about any specific course component and educational provider. Search and filter through the platform's complete curriculum to find exactly what you need for your learning journey.