API

Warning

The API is under active development and is subject to change. All suggestions are welcome!

RSSHub provides the following APIs:

# List of Public Routes

Tip

This API will not return any routes under lib/protected_router.js.

Eg: https://rsshub.app/api/routes/github (opens new window)

Route: /api/routes/:name?

Parameters:

A successful request returns an HTTP status code 200 OK with the result in JSON:

{
    "status": "success",
    "data": {
        "github": {
            "routes": [
                "/github/trending/:since/:language?",
                "/github/issue/:user/:repo",
                "/github/user/followers/:user",
                "/github/stars/:user/:repo"
            ]
        }
    },
    "message": "request returned 4 routes"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14

If no matching results were found, the server returns only an HTTP status code 204 No Content.