> For the complete documentation index, see [llms.txt](https://docs.oakwood-mp.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.oakwood-mp.net/server-api.md).

# Server API

This page describes the RESTful API for the server.

## Get Server Info

<mark style="color:blue;">`GET`</mark> `http://localhost:27010/info`

This endpoint allows you to get server info.

{% tabs %}
{% tab title="200 Server info was retrieved." %}

```javascript
{  
   "error":false,
   "message":"",
   "servers":[  
      {  
         "name":"Devel Server | TESTERS ONLY",
         "players":0,
         "maxPlayers":128,
         "pass":false,
         "host":"159.89.11.170",
         "port":"8111",
         "version":"b9e44b7f4a662a9a",
         "mapname":"freeride"
      }
   ]
}
```

{% endtab %}
{% endtabs %}
