FluxRSS
Documentazione API

API FluxRSS

Crea, elenca ed elimina i tuoi feed RSS tramite richiesta HTTP. API REST, risposte JSON.

Base

Tutte le route dell'API sono precedute dal prefisso:

https://www.flux-rss.com/api/v1

Autenticazione

L'API si autentica tramite chiave Bearer. Genera una chiave frx_live_… in Impostazioni → Chiavi API (inclusa nell'offerta Mega). La chiave viene mostrata una sola volta — conservala con cura.

Authorization: Bearer frx_live_xxxxxxxxxxxxxxxxxxxx

Endpoint

GET/api/v1/feeds
Elenca tutti i tuoi feed.
curl https://www.flux-rss.com/api/v1/feeds \
  -H "Authorization: Bearer frx_live_…"
Risposta:
{
  "data": [
    {
      "id": "cmqw50zts0006…",
      "title": "Faits divers",
      "sourceUrl": "https://www.ladepeche.fr/faits-divers/",
      "source": "native",
      "itemCount": 50,
      "feedUrl": "https://www.flux-rss.com/feeds/cmqw50zts0006….xml",
      "jsonUrl": "https://www.flux-rss.com/feeds/cmqw50zts0006….json",
      "createdAt": "2026-06-27T09:08:32.460Z"
    }
  ]
}
POST/api/v1/feeds
Crea un feed a partire da un URL sorgente. Soggetto alla quota della tua offerta.
curl -X POST https://www.flux-rss.com/api/v1/feeds \
  -H "Authorization: Bearer frx_live_…" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://www.lemonde.fr/faits-divers/"}'
Risposta 201:
{
  "id": "cmq…",
  "title": "Faits divers",
  "source": "native",
  "itemCount": 50,
  "feedUrl": "https://www.flux-rss.com/feeds/cmq….xml",
  "jsonUrl": "https://www.flux-rss.com/feeds/cmq….json"
}
GET/api/v1/feeds/:id
Dettaglio di un feed con i suoi articoli.
curl https://www.flux-rss.com/api/v1/feeds/cmq… \
  -H "Authorization: Bearer frx_live_…"
DELETE/api/v1/feeds/:id
Elimina un feed.
curl -X DELETE https://www.flux-rss.com/api/v1/feeds/cmq… \
  -H "Authorization: Bearer frx_live_…"

Consumare un feed (pubblico, senza chiave)

Una volta generato, il feed viene servito a un URL stabile e pubblico, leggibile da qualsiasi lettore RSS, script, n8n, Zapier…

# RSS 2.0
GET https://www.flux-rss.com/feeds/<id>.xml

# JSON Feed 1.1 (avec en-tête CORS)
GET https://www.flux-rss.com/feeds/<id>.json

# Limiter le nombre d'articles
GET https://www.flux-rss.com/feeds/<id>.json?limit=10

Limiti ed errori

L'accesso all'API (chiavi frx_live_) è incluso nell'offerta Mega. Hai bisogno di aiuto? Contattaci.