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

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.

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/tokenizer

Request Body:
{
"text": "寿司"
}
```

### Output

```JSON
[
{
"word_position": 1,
"surface_form": "寿司",
"reading": "スシ"
}
]
```