KazeroG it works flawlessly. You just didn't change my example ?
In my code I do:
$discussions = (new FlarumDiscussionStream())->tag('dev')->fetch();
Which fetches the dev tag on this forum.
On your forum you have no dev tag so of course this returns no discussions (and my example simply does not show anything when there are no results).
You could use one of your tags like that:
$discussions = (new FlarumDiscussionStream())->tag('hors-role-play')->fetch();
Or just all discussions without filtering by tag:
$discussions = (new FlarumDiscussionStream())->fetch();
I updated the snippet to show a message when there are no discussions matching ?