diff --git a/src/Api.php b/src/Api.php
index db779cd..07405e5 100644
--- a/src/Api.php
+++ b/src/Api.php
@@ -64,15 +64,23 @@ class Api {
         }) !== false;
     }
 
-    public function groups(): Collection {
-        return collect($this->http()->get(self::$url.'/ica/rest/nami/gruppierungen/filtered-for-navigation/gruppierung/node/root')->json()['data'])->map(function($group) {
-            return (object) [
-                'name' => $group['descriptor'],
-                'id' => $group['id']
-            ];
+    public function groups($parentGroupId  = null): Collection {
+        $parentGroupId = $parentGroupId ?: 'root';
+        return collect($this->http()->get(self::$url.'/ica/rest/nami/gruppierungen/filtered-for-navigation/gruppierung/node/'.$parentGroupId)->json()['data'])->map(function($group) {
+            return Group::fromResponse($group);
         });
     }
 
+    public function group($groupId) {
+        return $this->groups()->first(function($group) use ($groupId) {
+            return $group->id == $groupId;
+        });
+    }
+
+    public function subgroupsOf($groupId) {
+        return $this->groups($groupId);
+    }
+
     public function fees() {
         $response = $this->client->get("/ica/rest/namiBeitrag/beitragsartmgl/gruppierung/{$this->user->getNamiGroupId()}", [
             'cookies' => $this->cookie
diff --git a/src/Group.php b/src/Group.php
new file mode 100644
index 0000000..4fe5942
--- /dev/null
+++ b/src/Group.php
@@ -0,0 +1,28 @@
+<?php
+
+namespace Zoomyboy\LaravelNami;
+
+use Illuminate\Contracts\Support\Arrayable;
+
+class Group implements Arrayable {
+
+    public $name;
+    public $id;
+
+    public static function fromResponse($response) {
+        $group = new self();
+        $group->name = $response['descriptor'];
+        $group->id = $response['id'];
+
+        return $group;
+    }
+
+    public function toArray() {
+        return [ 'id' => $this->id, 'name' => $this->name ];
+    }
+
+    public function subgroups() {
+        return Nami::subgroupsOf($this->id);
+    }
+
+}
diff --git a/tests/Unit/GetGroupsTest.php b/tests/Unit/GetGroupsTest.php
index e7377d8..aca3c20 100644
--- a/tests/Unit/GetGroupsTest.php
+++ b/tests/Unit/GetGroupsTest.php
@@ -8,11 +8,14 @@ use Illuminate\Support\Facades\Http;
 use Illuminate\Support\Facades\Config;
 use Zoomyboy\LaravelNami\NamiServiceProvider;
 use Zoomyboy\LaravelNami\LoginException;
+use Zoomyboy\LaravelNami\Group;
 
 class GetGroupsTest extends TestCase
 {
 
     public $groupsResponse = '{"success":true,"data":[{"descriptor":"Group","name":"","representedClass":"de.iconcept.nami.entity.org.Gruppierung","id":100}],"responseType":"OK"}';
+    public $subgroupsResponse = '{ "success": true, "data": [ { "descriptor": "Siebengebirge", "name": "", "representedClass": "de.iconcept.nami.entity.org.Gruppierung", "id": 101300 }, { "descriptor": "Sieg", "name": "", "representedClass": "de.iconcept.nami.entity.org.Gruppierung", "id": 100900 }, { "descriptor": "Sieg", "name": "", "representedClass": "de.iconcept.nami.entity.org.Gruppierung", "id": 100900 }, { "descriptor": "Voreifel", "name": "", "representedClass": "de.iconcept.nami.entity.org.Gruppierung", "id": 101000 } ], "responseType": "OK" }';
+    public $subsubgroupsResponse = '{ "success": true, "data": [ { "descriptor": "Silva", "name": "", "representedClass": "de.iconcept.nami.entity.org.Gruppierung", "id": 100105 } ], "responseType": "OK" }';
 
     public function test_get_all_groups()
     {
@@ -26,7 +29,7 @@ class GetGroupsTest extends TestCase
 
         Nami::login();
         $this->assertEquals([
-            (object) ['id' => 100, 'name' => 'Group']
+            ['id' => 100, 'name' => 'Group']
         ], Nami::groups()->toArray());
 
         Http::assertSent(function($request) {
@@ -51,4 +54,39 @@ class GetGroupsTest extends TestCase
 
         Http::assertSentCount(4);
     }
+
+    public function test_get_subgroups_for_a_group() {
+        Http::fake([
+            'https://nami.dpsg.de/ica/pages/login.jsp' => Http::response('<html></html>', 200),
+            'https://nami.dpsg.de/ica/rest/nami/auth/manual/sessionStartup' => Http::response($this->successJson, 200),
+            'https://nami.dpsg.de/ica/rest/nami/gruppierungen/filtered-for-navigation/gruppierung/node/root' => Http::response($this->groupsResponse, 200),
+            'https://nami.dpsg.de/ica/rest/nami/gruppierungen/filtered-for-navigation/gruppierung/node/100' => Http::response($this->subgroupsResponse, 200)
+        ]);
+
+        $this->setCredentials();
+
+        Nami::login();
+
+        $subgroups = Nami::group(100)->subgroups();
+
+        $this->assertEquals([
+            ['id' => 101300, 'name' => 'Siebengebirge'],
+            ['id' => 100900, 'name' => 'Sieg'],
+            ['id' => 100900, 'name' => 'Sieg'],
+            ['id' => 101000, 'name' => 'Voreifel']
+        ], $subgroups->toArray());
+
+        $subgroups->each(function($group) {
+            $this->assertInstanceOf(Group::class, $group);
+        });
+
+        Http::assertSent(function($request) {
+            return $request->url() == 'https://nami.dpsg.de/ica/rest/nami/gruppierungen/filtered-for-navigation/gruppierung/node/root';
+        });
+        Http::assertSent(function($request) {
+            return $request->url() == 'https://nami.dpsg.de/ica/rest/nami/gruppierungen/filtered-for-navigation/gruppierung/node/100';
+        });
+
+        Http::assertSentCount(4);
+    }
 }