Skip to content
This repository was archived by the owner on Nov 17, 2025. It is now read-only.

Latest commit

 

History

History
15 lines (12 loc) · 233 Bytes

File metadata and controls

15 lines (12 loc) · 233 Bytes

hoerapi.php

(Inspired by https://github.com/hoersuppe/hoerapi.py)

Usage

<?php
require "api.php";
use HoerAPI\HoerAPI;

$podcasts = HoerAPI::getPodcasts();
foreach ($podcasts as $pod) {
    echo $pod->slug . "<br />";
}