mocoVoice APIでは、音声ファイルの書き起こしが行えます。
書き起こしAPIでは、音声ファイルをアップロードし、書き起こしを開始し、その結果を取得することができます。
辞書APIでは、書き起こし精度を高めるために、辞書を作成し、単語を登録することができます。
mocoVoice APIでは、音声ファイルの書き起こしが行えます。
書き起こしAPIでは、音声ファイルをアップロードし、書き起こしを開始し、その結果を取得することができます。
辞書APIでは、書き起こし精度を高めるために、辞書を作成し、単語を登録することができます。
curl -i -X GET \
'https://api.mocomoco.ai/api/v1/dictionaries?page=1' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
[ { "dictionary_id": "string", "team_id": "string", "name": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" } ]
curl -i -X POST \
https://api.mocomoco.ai/api/v1/dictionaries \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"name": "string"
}'
{ "dictionary_id": "string", "team_id": "string", "name": "string", "words": [], "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
curl -i -X GET \
'https://api.mocomoco.ai/api/v1/dictionaries/{dictionary_id}' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
{ "dictionary_id": "string", "team_id": "string", "name": "string", "words": [], "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
curl -i -X PATCH \
'https://api.mocomoco.ai/api/v1/dictionaries/{dictionary_id}' \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"name": "string"
}'
{ "dictionary_id": "string", "team_id": "string", "name": "string", "words": [], "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
curl -i -X DELETE \
'https://api.mocomoco.ai/api/v1/dictionaries/{dictionary_id}' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
curl -i -X POST \
'https://api.mocomoco.ai/api/v1/dictionaries/{dictionary_id}/words' \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"word": "string",
"reading": "string"
}'
{ "word_id": "string", "dictionary_id": "string", "word": "string", "reading": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
curl -i -X POST \
'https://api.mocomoco.ai/api/v1/dictionaries/{dictionary_id}/words/bulk' \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '[
{
"word": "string",
"reading": "string"
}
]'
[ { "word_id": "string", "dictionary_id": "string", "word": "string", "reading": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" } ]
curl -i -X GET \
'https://api.mocomoco.ai/api/v1/dictionaries/{dictionary_id}/words/{word_id}' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
{ "word_id": "string", "dictionary_id": "string", "word": "string", "reading": "string", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
curl -i -X DELETE \
'https://api.mocomoco.ai/api/v1/dictionaries/{dictionary_id}/words/{word_id}' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'