Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/imurx/jisho-extender
- Owner: ImUrX
- License: mit
- Created: 2020-04-26T19:53:04.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-12T14:42:42.000Z (about 2 years ago)
- Last Synced: 2024-11-01T06:22:59.094Z (2 months ago)
- Language: JavaScript
- Size: 306 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 "住まい"
*/
```