Documentation Index
Fetch the complete documentation index at: https://mintlify.com/miikorz/DailyNews/llms.txt
Use this file to discover all available pages before exploring further.
GET /feed/:id retrieves one news feed item from MongoDB using its unique ObjectId. Unlike GET /feed, this endpoint does not trigger any scraping — it is a direct database lookup. If no document matches the provided id, the server responds with 404 and the NOT_FOUND error envelope.
Endpoint
Path Parameters
The MongoDB ObjectId of the feed item to retrieve (e.g.
664a1f2e8b3c2a001e4d7f01). Must be a valid 24-character hexadecimal ObjectId string; passing a malformed value results in a 500 response carrying the cast error reason.Response
The matching Feed object on success, or
null when the item is not found.Always
null on a successful 200 response.Example Request
Example Response
Error Response (404)
Returned when no document with the givenid exists in MongoDB.
Status Codes
| Code | Meaning |
|---|---|
200 | Feed item found and returned successfully |
404 | No feed item exists with the provided ObjectId |
500 | An unexpected server error occurred (e.g. malformed ObjectId cast failure) |