https://github.com/wadjetz/readable
Mercury readable microservice server
https://github.com/wadjetz/readable
mercury microservice readable
Last synced: 3 months ago
JSON representation
Mercury readable microservice server
- Host: GitHub
- URL: https://github.com/wadjetz/readable
- Owner: Wadjetz
- Archived: true
- Created: 2019-03-15T20:23:44.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T03:21:22.000Z (over 2 years ago)
- Last Synced: 2025-03-21T03:18:10.158Z (7 months ago)
- Topics: mercury, microservice, readable
- Language: TypeScript
- Homepage:
- Size: 553 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Readable API
Get readable content from URL## Usage with curl
```sh
curl --location --request GET 'http://localhost:4300/readable?url='
```## Result
```json
{
"title": "Mercury Web Parser by Postlight",
"author": null,
"date_published": null,
"dek": null,
"lead_image_url": "https://mercury.postlight.com/_/src/components/images/large-summary-twitter.25a9c55f1e5441c6d04cf0020832b114.png",
"content": "content",
"next_page_url": null,
"url": "https://mercury.postlight.com/web-parser/",
"domain": "mercury.postlight.com",
"excerpt": "Make semantic sense out of any web article. Mercury Web Parser turns web articles into structured content reliably and easily.",
"word_count": 567,
"direction": "ltr",
"total_pages": 1,
"rendered_pages": 1
}
```## Usage with docker
```yml
version: '3'
services:
readable:
image: wadjetz/readable:latest
container_name: readable
ports:
- 4300:4300
```