Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/imurx/jisho-extender

A web-server that scraps and uses Jisho's API
https://github.com/imurx/jisho-extender

Last synced: 21 days ago
JSON representation

A web-server that scraps and uses Jisho's API

Awesome Lists containing this project

README

        

# jisho-extender is a scrapper that extends the current "official" API
This is not a library, this is a server, thought for running it as a "microservice"

### **GET** `/search/words`
Supported parameters: `keyword: string`

It's the same as the current Jisho API but it adds 2 new properties:
```js
const word = data[0];
console.log(word.audio) /*
returns {
mp3: "cloudflare link",
ogg: "cloudflare link"
} or returns an empty object
*/
console.log(word.japanese[0].furigana) /*
(Only on the first index of japanese array)
returns [
"す",
"",
""
]
This example is from "住まい"
*/
```