Hashtag Streams

Monitor and manage Fediverse hashtag streams.

Add New Stream

Enter without the # symbol

Streams

{{ streams|length }} streams
{% if streams %}
{% for stream in streams %}

#{{ stream.hashtag }}

{% if stream.active %} Active {% else %} Paused {% endif %}

{{ stream.instance }}

Created {{ stream.created_at }}

{% endfor %}
{% else %}

No streams configured yet.

{% endif %}
document.getElementById('active').checked; try { const response = await fetch('/api/streams/', { method: 'POST', headers: { 'Content-Type': 'application/json', }, body: JSON.stringify({ hashtag: hashtag.replace('#', ''), instance: instance, active: active }) }); if (response.ok) { alert('Stream added successfully!'); window.location.reload(); } else { const error = await response.json(); alert('Error: ' + error.detail); } } catch (error) { alert('Network error: ' + error.message); } });