# Feed Management
## Adding Feeds
```http
POST /reader/api/0/subscription/quickadd
```
### Parameters
- `quickadd`: Feed URL (e.g., `feed/http://example.com/feed.xml`)
### Response
```json
{
"query": "feed/http://example.com/feed.xml",
"numResults": 1,
"streamId": "feed/http://example.com/",
"streamName": "Example Feed"
}
```
## Editing Feeds
```http
POST /reader/api/0/subscription/edit
```
### Parameters
- `ac`: Action (`edit`, `follow`, `unfollow`)
- `s`: Stream ID
- `t`: New title (optional)
- `a`: Add to folder
- `r`: Remove from folder
## Listing Feeds
```http
GET /reader/api/0/subscription/list
```
### Response
Lists all subscribed feeds with metadata:
- Feed URL
- Title
- Categories/Folders
- Last updated
## Unread Counts
```http
GET /reader/api/0/unread-count
```
## Related
- [[Inoreader Stream Methods]]
- [[Inoreader Stream IDs]]
- [[RSS Feeds]]