An open API service indexing awesome lists of open source software.

https://github.com/shakotn/goardparser

REST API for parsing imageboards
https://github.com/shakotn/goardparser

concurrency golang gorilla-mux goroutine goroutines parallelism rest-api

Last synced: 4 months ago
JSON representation

REST API for parsing imageboards

Awesome Lists containing this project

README

          

## REST API for parsing image boards like 4chan/2ch

### Why?
I have written this as I love .webms, .gifs etc and everytime I should
manually download them.

This REST API parse your thread URL and return a JSON with all webm files
related to thread.

To obtain webm links you should make request to url

`http://goarparser.com/parse_data`

with parameter

```json
{
"thread_link": "https://2ch.hk/{board_name}/res/{thread_id}.json"
}
```

Response:

```json
{
"Files": [
{
"name": "{webm_id}.webm",
"path": "....webm",
"thumbnail": "....jpg"
},
]
}
```