.. _get_all_newsfeeds: Get All Newsfeeds ================= **Endpoint**: `/newsmanager/all` **Description**: Retrieve all newsfeeds for the user. **Access Required**: `newsmanager.read` **Request**: - **Method**: GET - **URL**: `https://api.neuron.expert/public/newsmanager/all` - **Headers**: - `X-Apikey: your_api_key` **Response**: - **Status 200**: List of all newsfeeds in JSON format. ```json [ { "newsfeed_id": 1, "title": "News Title 1" }, { "newsfeed_id": 2, "title": "News Title 2" } ] ``` - **Status 403**: Insufficient scope. ```json { "detail": "Insufficient scope" } ``` - **Status 404**: NewsFeed not found. ```json { "detail": "NewsFeed not found" } ``` **Example**: ```bash curl -X GET "https://api.neuron.expert/public/newsmanager/all" -H "X-Apikey: your_api_key" ```