https://github.com/aiktb/kuromoji-api
Kuromoji RESTful API endpoint service.
https://github.com/aiktb/kuromoji-api
kuromoji springboot
Last synced: 6 months ago
JSON representation
Kuromoji RESTful API endpoint service.
- Host: GitHub
- URL: https://github.com/aiktb/kuromoji-api
- Owner: aiktb
- License: mit
- Created: 2023-07-19T07:32:39.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-07-21T12:17:43.000Z (almost 2 years ago)
- Last Synced: 2023-07-21T14:04:41.841Z (almost 2 years ago)
- Topics: kuromoji, springboot
- Language: Java
- Homepage:
- Size: 65.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kuromoji-API
Kuromoji RESTful API endpoint service.
## API
```yaml
title: Kuromoji API
baseUri: https://api.aiktb.com/tokenizer
/:
post:
text: string
```## Example
### Input
```bash
POST https://api.aiktb.com/tokenizerRequest Body:
{
"text": "寿司"
}
```### Output
```JSON
[
{
"word_position": 1,
"surface_form": "寿司",
"reading": "スシ"
}
]
```